-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.71 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
{
"name": "open-tabletop",
"version": "0.16.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"start": "node --env-file-if-exists=.env server.js",
"test": "node --test test/*.js",
"test:integration": "node scripts/test-database.mjs",
"test:input": "node scripts/input-test.mjs",
"test:components": "node scripts/component-parity.mjs",
"test:devices": "node scripts/device-matrix.mjs",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write \"**/*.{js,mjs}\" package.json",
"format:check": "prettier --check \"**/*.{js,mjs}\" package.json",
"css:lint": "node scripts/css-parity.mjs --lint",
"check": "npm run lint && npm run format:check && npm run css:lint && npm test",
"audit": "npm audit --omit=dev --audit-level=high",
"build:icons": "node scripts/build-icons.mjs",
"assets:colliders": "node scripts/measure-colliders.mjs",
"admin:grant": "node --env-file-if-exists=.env scripts/admin-role.mjs grant",
"admin:revoke": "node --env-file-if-exists=.env scripts/admin-role.mjs revoke",
"secrets:migrate": "node --env-file-if-exists=.env scripts/migrate-compose-secrets.mjs"
},
"dependencies": {
"@colyseus/core": "^0.17.0",
"@colyseus/schema": "^4.0.7",
"@colyseus/ws-transport": "^0.17.0",
"cannon-es": "^0.20.0",
"convex-hull": "^1.0.3",
"express": "^4.19.2",
"helmet": "^7.2.0",
"pg": "^8.23.0",
"redis": "^5.12.1",
"sharp": "^0.35.4"
},
"overrides": {
"qs": "6.16.0"
},
"allowScripts": {
"msgpackr-extract@3.0.4": true
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.9.1",
"globals": "^17.11.0",
"prettier": "^3.9.6"
}
}