forked from Arinouchkine/examen_nodejs_m1_dev_hitema_04-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 723 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 723 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
{
"name": "examen_nodejs_m1_dev_hitema_04-2019",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:rest": "node ./api/index.js",
"start:websocket": "node ./websocket/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint \"./**/*.js\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.7.1",
"supertest": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"http-status-codes": "^1.3.2",
"ws": "^6.2.1"
},
"jest": {
"rootDir": "./",
"bail": false,
"clearMocks": true,
"collectCoverage": false,
"verbose": true
}
}