forked from thisdot/node-enterprise-setup-shell
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.35 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "nodejs-enterprise-api",
"version": "1.0.0",
"description": "Sample API for enterprise applications",
"main": "src/server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha -w './src/**/tests/**/*.js'",
"coverage": "nyc --reporter=html npm run test",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpato/nodejs-enterprise-api.git"
},
"keywords": [
"nodejs",
"api",
"backend",
"mongodb",
"expressjs"
],
"author": "Pato Vargas",
"license": "MIT",
"bugs": {
"url": "https://github.com/devpato/nodejs-enterprise-api/issues"
},
"homepage": "https://github.com/devpato/nodejs-enterprise-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chi": "0.0.10",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"grunt": "^1.0.4",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.2.0",
"mongoose": "^5.7.1",
"node-mocks-http": "^1.8.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"should": "^13.2.3",
"sinon": "^7.5.0",
"sinon-mongoose": "^2.3.0",
"sinon-test": "^2.4.0"
}
}