forked from patarkf/express-testable-api-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "express-api-boilerplate",
"version": "0.0.0",
"private": true,
"author": {
"name": "Patrick Ferreira",
"email": "paatrickferreira@gmail.com",
"url": "https://github.com/patarkf"
},
"scripts": {
"start": "DEBUG=express-sequelize node ./bin/www",
"test": "cross-env NODE_ENV=test _mocha test/**/*.test.js",
"cover": "istanbul cover _mocha test/**/*.test.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"lint": "eslint --fix .",
"db-migrate": "sequelize db:migrate",
"migrate-and-start": "npm run db-migrate && npm start"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"debug": "^3.1.0",
"express": "^4.16.2",
"lodash.omit": "^4.5.0",
"morgan": "^1.7.0",
"mysql": "^2.15.0",
"sequelize": "^4.37.6",
"sequelize-cli": "^4.0.0",
"sqlite3": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"expect.js": "^0.3.1",
"husky": "^0.14.3",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^5.1.0",
"mocha-lcov-reporter": "^1.3.0",
"supertest": "^3.0.0"
}
}