forked from franzspiess/docco-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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": "docco-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "jest --watch",
"start": "node ./src/bin/www",
"dev": "DEBUG=docco-backend:* nodemon ./src/bin/www",
"bootstrap": "node ./src/models/migrations/bootstrap"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"express": "~4.16.0",
"jsonwebtoken": "^8.4.0",
"morgan": "~1.9.0",
"mysql": "^2.16.0",
"mysql2": "^1.6.4",
"node-json2html": "^1.2.0",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-json": "^1.3.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.0.0",
"prettier": "^1.16.4",
"sequelize-mock": "^0.10.2",
"superagent": "^4.1.0",
"supertest": "^3.4.2"
}
}