-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "burger-api",
"version": "0.1.0",
"private": false,
"scripts": {
"start": "node ./src/bin/www.js",
"migrate": "node ./src/db/migrate.js",
"test": "mocha test --recursive --exit --no-timeouts",
"coverage": "nyc npm run test"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "~1.18.2",
"bookshelf": "^0.12.1",
"bookshelf-relationships": "^1.0.1",
"bookshelf-uuid": "^1.0.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"cors": "^2.8.4",
"express": "~4.15.5",
"express-rate-limit": "^2.11.0",
"express-validation": "^1.0.2",
"helmet": "^3.12.0",
"joi": "^13.2.0",
"knex": "^0.13.0",
"lodash": "^4.17.5",
"morgan": "~1.9.0",
"mysql": "^2.15.0",
"swagger-jsdoc": "^1.9.7",
"swagger-ui-express": "^2.0.15"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=8"
}
}