-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
44
{
"name": "node-api",
"main": "server.js",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.1",
"body-parser": "~1.0.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"check-valid-url": "0.0.2",
"codecov": "^3.0.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "~4.5.0",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.3.0",
"jwt-simple": "^0.5.1",
"manakin": "^0.5.1",
"mocha": "^5.2.0",
"mongoose": "~3.6.13",
"morgan": "^1.9.0",
"node-cron": "^2.0.3",
"nodemon": "^1.18.3",
"nyc": "^13.0.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"sequelize": "^4.38.0",
"sequelize-mock": "^0.10.2",
"twilio": "^3.24.0",
"valid-url": "^1.0.9"
},
"scripts": {
"start": "nodemon ./bin/www",
"setupDb": " NODE_ENV=test sequelize db:migrate",
"test": "NODE_ENV=test nyc mocha ./tests/test --exit",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"showcoverage": "open ./tests/coverage/lcov-report/index.html"
}
}