-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.01 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "chess-attack-visualization",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "vite build",
"docker:build": "./build_docker.sh chess",
"test": "vitest",
"docker:test": "docker run -t chess ./run_tests.sh",
"dev": "vite",
"docker:dev": "docker run --network=host -v .:/app -it chess npm exec vite dev --host",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"zip:init": "pnpm run zip -- preedit",
"zip:beetle": "pnpm run zip -- beetle_postedit",
"zip:sonnet": "pnpm run zip -- sonnet_postedit",
"zip:rewrite": "pnpm run zip -- rewrite",
"time": "./zip_project.sh --timer status",
"preinstall": "node -e \"if (!process.env.npm_execpath?.includes('pnpm')) { console.error('🚫 Use pnpm. Run: pnpm install'); process.exit(1) }\""
},
"dependencies": {
"@nestjs/cli": "^11.0.7",
"@nestjs/common": "^11.1.3",
"@nestjs/core": "^11.1.3",
"@nestjs/platform-express": "^11.1.3",
"chess.js": "npm:@pabrams/chess.js@^1.5.4",
"package-lock.json": "^1.0.0",
"pkce-challenge": "^5.0.0",
"react": "^19.1.0",
"react-chessboard": "latest",
"react-dom": "^19.1.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typescript-eslint": "^8.50.1"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chess.js": "^0.13.7",
"@types/node": "^24.0.10",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.2",
"jsdom": "^26.0.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@10.26.2"
}