-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
51
52
53
54
{
"name": "commit-rocket-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"analyze:build": "cross-env ANALYZE=true npm run build",
"analyze:dev": "cross-env ANALYZE=true npm run dev",
"make:article-list": "node ./scripts/generateArticlesIndex.js",
"make:sitemap": "node ./scripts/generateSitemap.js",
"make:robots": "node ./scripts/generateRobots.js",
"make:cname": "node ./scripts/generateCName.js",
"build": "next build && next export",
"postbuild": "npm run make:sitemap && npm run make:robots && npm run make:cname"
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@headlessui/tailwindcss": "^0.1.2",
"@heroicons/react": "^2.0.16",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^2.9.11",
"class-variance-authority": "^0.4.0",
"framer-motion": "^9.1.7",
"linkedom": "^0.14.25",
"next": "13.2.4",
"nextjs-google-analytics": "^2.3.3",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.5",
"string-strip-html": "^13.2.1",
"sweetalert2": "^11.4.8",
"sweetalert2-react-content": "^5.0.7",
"tailwind-merge": "^1.10.0",
"typescript": "4.9.5",
"wretch": "^2.5.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "18.15.0",
"@types/prismjs": "^1.26.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"cssnano": "^5.1.15",
"dotenv": "^16.0.3",
"glob": "^9.3.2",
"next-bundle-analyzer": "^0.6.7",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.2"
}
}