forked from kirklin/boot-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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": "boot-nextjs",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest"
},
"dependencies": {
"@kirklin/logger": "^0.0.2",
"@kirklin/reset-css": "^0.0.6",
"cfuse": "^0.1.1",
"next": "14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.4",
"unocss-preset-chinese": "^0.3.3",
"unocss-preset-ease": "^0.0.4"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.16.1",
"@kirklin/eslint-config": "^2.7.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@unocss/postcss": "latest",
"@unocss/webpack": "^0.64.1",
"@vercel/analytics": "^1.4.0",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"postcss": "^8.4.49",
"typescript": "^5.6.3",
"unocss": "latest",
"vitest": "^2.1.5"
}
}