-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "chessgrind",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "mkdir -p public/stockfish && cp node_modules/stockfish/bin/stockfish-18-lite-single.js node_modules/stockfish/bin/stockfish-18-lite-single.wasm public/stockfish/ 2>/dev/null || true"
},
"dependencies": {
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.6.1",
"autoprefixer": "^10.4.20",
"bcryptjs": "^2.4.3",
"chess.js": "^1.0.0-beta.8",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"jose": "^5.9.6",
"lucide-react": "^0.544.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.8.1",
"stockfish": "^18.0.7",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"postcss": "^8.5",
"tailwindcss": "^3.4.17",
"typescript": "5.7.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}