-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.42 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.42 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
{
"name": "polypongon",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "AGPL-3.0-or-later",
"scripts": {
"test": "npm run test:unit && npm run test:browser",
"test:unit": "node test/physics_test.js && node test/gameplay_test.js && node test/verification_test.js && node test/server_first_start_test.js && node test/server_restart_test.js && node test/client_regression_test.js && node test/server_config_test.js && node test/instance_affinity_test.js && node test/server_api_test.js",
"test:physics": "node test/physics_test.js",
"test:gameplay": "node test/gameplay_test.js",
"test:verification": "node test/verification_test.js",
"test:latency": "node test/latency_simulation_test.js",
"test:browser": "playwright test",
"dev": "vite",
"build": "vite build",
"build:static": "VITE_STATIC_BUILD=true vite build",
"preview": "vite preview",
"lint": "eslint .",
"server": "node --import ./server/instrument.js server/index.js"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0"
},
"dependencies": {
"@sentry/browser": "^10.38.0",
"@sentry/node": "^10.38.0",
"@sentry/profiling-node": "^10.38.0",
"express": "^5.2.1",
"qrcode": "^1.5.4",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
}
}