-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.93 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
65
66
67
68
69
70
{
"name": "tetches",
"version": "1.0.0",
"description": "Tetches — a real-time multiplayer game that fuses chess with Tetris on a dynamically expanding board.",
"main": "server.js",
"type": "commonjs",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:gameplay": "jest tests/gameplay/",
"test:core": "jest tests/core/",
"test:ui": "jest tests/ui/",
"test:server": "jest --selectProjects server tests/server/",
"test:backend": "jest tests/backend/",
"test:security": "jest --selectProjects=security --testMatch=\"**/tests/security/**/*.test.js\" --verbose --forceExit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --forceExit --passWithNoTests --selectProjects server tests/server/",
"rebrand:dry-run": "node scripts/rename-tetches-to-tetches.js"
},
"keywords": [
"chess",
"tetris",
"game",
"multiplayer",
"socket.io",
"three.js"
],
"author": "",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^8.1.3",
"@sentry/node": "^10.53.1",
"body-parser": "^1.20.2",
"cors": "^2.8.6",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^8.5.2",
"helmet": "^8.1.0",
"multer": "^2.0.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"prom-client": "^15.1.3",
"sanitize-html": "^2.14.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^10.0.1",
"babel-jest": "^29.7.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}