-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 955 Bytes
/
package.json
File metadata and controls
42 lines (41 loc) · 955 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
39
40
41
42
{
"name": "crux",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"@prisma/client": "^6.19.1",
"@tanstack/react-query": "^5.90.16",
"lucide-react": "^0.476.0",
"motion": "^12.23.26",
"next": "16.1.1",
"nextjs-toploader": "^3.9.17",
"prisma": "^6.19.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "^5.5.0",
"react-toastify": "^11.0.5",
"zustand": "^5.0.9"
},
"devDependencies": {
"typescript": "^5.9.3",
"@types/node": "^20.19.27",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.1",
"axios": "^1.13.2"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}