-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 951 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 951 Bytes
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
{
"name": "GIM-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --runInBand --testLocationInResults --setupFiles dotenv/config --detectOpenHandles",
"test:watch": "npm run test -- --watch --detectOpenHandles",
"start": "node -r dotenv/config server.js",
"start:watch": "nodemon -r dotenv/config server.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.14.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/jest": "^26.0.23",
"eslint": "^7.28.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"supertest": "^6.1.3"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2"
}
}