-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "node-api-starter",
"version": "1.0.0",
"description": "Node JS API Starter",
"main": "index.js",
"engines": {
"node": "10.16.0",
"npm": "6.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/akinmaurice/node-api-starter.git"
},
"nyc": {
"check-coverage": true,
"statements": 80,
"lines": 80
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"seed-test": "node ./tools/test_seed/index.js",
"test": "nyc --reporter=text mocha --recursive --exit",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"dev": "nodemon index.js",
"start": "node index.js"
},
"author": "Akin",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^15.1.0",
"@sendgrid/mail": "^6.4.0",
"@sentry/node": "^5.5.0",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"cls-hooked": "^4.2.2",
"crypto-random-string": "^3.0.1",
"db-migrate-pg": "^1.0.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"file-stream-rotator": "^0.4.1",
"helmet": "^3.20.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node-cron": "^2.0.3",
"pg-promise": "^9.0.0",
"q": "^1.5.1",
"redis": "^2.8.0",
"swig-templates": "^2.0.3",
"twilio": "^3.33.2",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"codecov": "^3.5.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^7.3.2",
"supertest": "^4.0.2"
}
}