-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "content",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev -p 1125",
"build": "next build",
"postbuild": "next-sitemap --config sitemap.config.js",
"start": "next start",
"test": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": [
">0.3%",
"not dead",
"not op_mini all"
],
"dependencies": {
"@next/third-parties": "^14.2.23",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.5",
"next": "^14.2.5",
"next-cloudinary": "^6.6.2",
"next-mdx-remote": "^5.0.0",
"next-seo": "^6.6.0",
"next-sitemap": "^4.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-syntax-highlighter": "^15.5.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier-plugin-organize-imports": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vercel": "^41.0.0"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
],
"tabWidth": 2,
"useTabs": false
}
}