-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 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
62
63
64
{
"name": "codemate-2",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"setup": "node scripts/bootstrap.mjs",
"migrate": "npm run tools:build && node .data/tools/scripts/migrate.js",
"seed": "npm run tools:build && node .data/tools/scripts/seed.js",
"create-admin": "npm run tools:build && node .data/tools/scripts/create-admin.js",
"dev": "node scripts/dev.mjs",
"build": "tsc --noEmit && vite build --config frontend/vite.config.ts --configLoader native && tsc -p backend/tsconfig.json",
"start": "node dist/backend/src/server.js",
"test": "npm run tools:build && node --test --test-concurrency=1 .data/tools/tests/*.test.js",
"test:e2e": "npm run tools:build && node scripts/run-e2e.mjs",
"test:load": "npm run tools:build && node .data/tools/tests/load.js",
"check": "tsc --noEmit",
"tools:build": "tsc -p tsconfig.tools.json",
"local": "node scripts/local.mjs"
},
"dependencies": {
"@electric-sql/pglite": "^0.3.14",
"@monaco-editor/react": "^4.7.0",
"bcryptjs": "^3.0.2",
"chess.js": "^1.4.0",
"cookie": "^1.0.2",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"helmet": "^8.1.0",
"lucide-react": "^0.468.0",
"monaco-editor": "^0.52.2",
"pg": "^8.16.3",
"react": "^19.1.1",
"react-chessboard": "^5.5.0",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"stockfish": "^17.1.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@tailwindcss/vite": "^4.1.12",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"@types/pg": "^8.15.5",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.2.0",
"prettier": "^3.9.6",
"tailwindcss": "^4.1.12",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^7.1.3"
}
}