forked from Thibaut-Comte/nodejs-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 862 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 862 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
35
36
37
38
39
40
41
{
"name": "nodejs-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon node index.js",
"debug": "nodemon node --inspect index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint \"./**/*.js\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^5.16.0",
"jest": "24.7.1",
"nodemon": "^1.18.10",
"supertest": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"mongodb": "^3.2.2",
"multer": "^1.4.1",
"pg": "^7.9.0",
"ws": "^6.2.1"
},
"jest": {
"rootDir": "./",
"bail": false,
"clearMocks": true,
"collectCoverage": true,
"verbose": true,
"collectCoverageFrom": [
"./**/*.js",
"!./coverage/**/*.js"
]
}
}