-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "proyecto",
"version": "0.0.1",
"private": true,
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"test": "NODE_ENV=test mocha --recursive test",
"test:coverage": "nyc npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --recursive test/integration",
"lint": "eslint app.js app/**/*.js config/*.js auth/*.js"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.4",
"body-parser": "1.18.2",
"compression": "1.6.2",
"cookie-parser": "1.4.3",
"cors": "^2.8.5",
"express": "^4.13.3",
"glob": "6.0.4",
"influxdb-nodejs": "^3.1.0",
"jwt-simple": "^0.5.6",
"method-override": "2.3.8",
"moment": "^2.24.0",
"mongoose": "4.13.12",
"morgan": "1.9.0",
"multer": "1.1.0",
"nodemon": "^1.19.1",
"request-promise": "^4.2.4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^4.3.0",
"grunt": "^1.0.1",
"load-grunt-tasks": "^3.2.0",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"request": "^2.60.0",
"time-grunt": "^1.2.1"
}
}