-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
56
57
58
59
{
"name": "nodejs-backend-boilerplate",
"version": "0.0.1",
"description": "[My product description]",
"main": "index.js",
"scripts": {
"start": "nodemon app.js",
"dev": "nodemon app.js",
"specs": "node_modules/.bin/mocha --exit",
"test": "sh scripts/validate-coverage.sh"
},
"author": "Anand Narayan Sivaprakasam",
"license": "ISC",
"dependencies": {
"@sentry/node": "^4.1.1",
"algoliasearch": "^3.30.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-certbot-endpoint": "^1.0.0",
"express-winston": "^3.0.0",
"googleapis": "^39.1.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.21",
"mailgun-js": "^0.20.0",
"migrate": "^1.6.1",
"multer": "^1.3.1",
"node-cron": "^1.2.1",
"opn": "^5.3.0",
"pg": "^7.4.3",
"pg-boss": "^3.0.0",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sequelize": "^5.15.1",
"validate.js": "^0.12.0",
"winston": "^3.1.0",
"winston-papertrail": "^1.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coverage-percentage": "0.0.2",
"factory-girl": "^5.0.2",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"nock": "^10.0.1",
"nock-vcr-recorder": "^0.1.5",
"nodemon": "^1.18.4",
"nyc": "^13.1.0",
"sequelize-cli": "^5.4.0",
"sinon": "^7.0.0"
},
"engines": {
"node": "9.10.0"
}
}