-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1013 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1013 Bytes
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
{
"name": "yuanyanyao-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm type-check && next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"check-all": "pnpm run type-check && pnpm run lint && pnpm run build",
"postbuild": "next-sitemap"
},
"dependencies": {
"@next/third-parties": "^15.1.7",
"fuse.js": "^7.0.0",
"next": "14.2.35",
"next-seo": "^6.4.0",
"next-sitemap": "^4.2.3",
"pinyin-pro": "^3.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "~5.3.3"
}
}