forked from hamproductions/next-js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
55
{
"name": "out",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"fix": "bun lint:fix",
"codegen:panda": "panda codegen",
"prepare": "bun codegen:panda"
},
"dependencies": {
"@ark-ui/react": "^3.5.0",
"@hookform/resolvers": "^3.9.0",
"@pandacss/dev": "^0.42.0",
"@park-ui/panda-preset": "^0.38.1",
"axios": "^1.7.2",
"next": "^15.0.0-rc.0",
"npm": "^10.8.1",
"react": "^19.0.0-rc-df783f9ea1-20240708",
"react-dom": "^19.0.0-rc-df783f9ea1-20240708",
"react-hook-form": "^7.52.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@next/eslint-plugin-next": "^14.2.4",
"@pandabox/prettier-plugin": "^0.1.3",
"@pandacss/eslint-plugin": "^0.1.9",
"@pandacss/studio": "^0.42.0",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"babel-plugin-react-compiler": "^0.0.0-experimental-696af53-20240625",
"eslint": "^9.6.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-compiler": "^0.0.0-experimental-0998c1e-20240625",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-unused-imports": "^4.0.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
}
}