-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.29 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
{
"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",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"csv-parser": "^2.3.1",
"dotenv": "^6.0.0",
"ejs": "^2.7.1",
"express": "^4.16.3",
"express-certbot-endpoint": "^1.0.0",
"express-graphql": "^0.9.0",
"express-winston": "^3.0.0",
"graphql": "^14.5.8",
"lodash": "^4.17.21",
"migrate": "^1.6.1",
"multer": "^1.3.1",
"opn": "^5.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"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"
}
}