-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 KB
/
package.json
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
{
"name": "design-code.tips",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"contentlayer2 dev\" \"next dev\" \"next-image-export-optimizer\"",
"build": "contentlayer2 build && next build && next-image-export-optimizer",
"start": "next start",
"postbuild": "next-sitemap"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"framer-motion": "^11.3.30",
"next": "^14.2.6",
"next-image-export-optimizer": "^1.12.3",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/prismjs": "^1.26.3",
"@types/react": "^18.0.17",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"contentlayer2": "^0.5.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.6",
"next-contentlayer2": "^0.5.0",
"next-seo": "^6.5.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.38",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.4"
},
"overrides": {
"react": "^18.2.0",
"@types/react": "^18.0.17",
"react-dom": "^18.2.0"
}
}