-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1003 Bytes
/
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
{
"name": "onboarding-api",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"private": true,
"author": "www.rocketinsights.com",
"scripts": {
"dev": "nodemon -L src/index.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test:unit": "mocha --opts test/unit/mocha.opts.unit",
"test:integration" : "mocha --opts test/integration/mocha.opts.integration"
},
"devDependencies": {
"errorhandler": "^1.5.0",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.9",
"supertest": "^3.3.0",
"mocha": "^5.2.0",
"chai": "^4.2.0"
},
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv-safe": "^6.1.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"winston": "^3.1.0"
}
}