-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.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
{
"name": "atom",
"version": "1.0.0",
"description": "Juego de mesa en línea ambientado en el mundo atómico",
"main": "src/server/index.js",
"type": "commonjs",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "node src/server/index.js",
"dev": "nodemon src/server/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test --retries=1",
"lint": "eslint src/ tests/"
},
"dependencies": {
"express": "^4.21.2",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.52.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"socket.io-client": "^4.8.3",
"supertest": "^7.1.1"
}
}