-
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) · 841 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 841 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": "nodejs-api-boilerplate",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha \"test/**/*.spec.js\"",
"test-coverage": "./node_modules/nyc/bin/nyc.js mocha \"test/**/*.spec.js\" --timeout=3000",
"start": "node src/app.js"
},
"repository": {
"type": "git",
"url": "http://gitlab.magnetico.com.ar:9091/gfusca/nodejs-api-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"dotenv": "^7.0.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.3.0",
"mocha": "^5.2.0",
"mongoose": "^5.2.8",
"sinon": "^6.1.5"
},
"devDependencies": {
"nyc": "^13.0.1",
"supertest": "^3.2.0"
}
}