-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.31 KB
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
{
"name": "werewolf",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"ws": "node server/socketServer.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev --name init",
"db:reset": "prisma migrate reset",
"db:studio": "prisma studio"
},
"dependencies": {
"react": "19.2.0",
"react-dom": "19.2.0",
"next": "16.0.1",
"@prisma/client": "^6.6.0",
"@reduxjs/toolkit": "^2.8.2",
"axios": "^1.10.0",
"react-icons": "^5.5.0",
"react-redux": "^9.2.0",
"react-toastify": "^11.0.5",
"socket.io-client": "^4.8.1",
"socket.io": "^4.8.1",
"uuid": "^11.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"typescript-eslint": "^8.30.1",
"prettier": "^3.6.0",
"prisma": "^6.6.0"
}
}