-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 937 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
{
"name": "@happypaul55/my-chess-book",
"version": "1.0.0",
"license": "AGPL-3.0-only",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "echo 'no tests'",
"lint": "next lint",
"generate": "node ./generate-pdf.js"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.17",
"babel-plugin-react-compiler": "19.1.0-rc.2",
"chess.js": "^1.4.0",
"next": "^15.5.7",
"next-translate": "^2.6.2",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.68.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-config-next": "^15.5.7",
"next-translate-plugin": "^2.6.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
}
}