-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.4 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
43
44
45
46
47
48
49
50
{
"name": "my-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"ts": "tsc --noEmit --incremental --watch",
"build": "rm -rf ./public/sitemap-0.xml ./public/sitemap.xml && next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"devs": "next dev -H ::",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.3.4",
"cheerio": "^1.0.0-rc.12",
"contentlayer": "^0.2.8",
"next": "^12.3.1",
"next-compose-plugins": "^2.2.1",
"next-contentlayer": "^0.2.8",
"next-images": "^1.8.4",
"next-progress": "^2.2.0",
"next-pwa": "^5.6.0",
"next-sitemap": "^3.1.7",
"next-themes": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.3.0",
"react-scroll-progress-bar": "^1.1.13",
"react-transition-group": "^4.4.5",
"rehype-code-titles": "^1.1.0",
"rehype-prism-plus": "^1.5.0"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"husky": "^8.0.3",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.4",
"typescript": "4.7.4"
}
}