-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "restapi",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www --exec babel-node --presets @babel/preset-env",
"test": "NODE_ENV=test npm run migrate:reset && NODE_ENV=test npm run migrate && NODE_ENV=test ./node_modules/.bin/jest tests",
"migrate": "sequelize db:migrate",
"migrate:reset": "sequelize db:migrate:undo:all"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@sentry/node": "^4.6.4",
"bcrypt": "^3.0.3",
"bluebird": "^3.5.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"express": "~4.16.0",
"fs": "0.0.1-security",
"http-errors": "~1.6.2",
"http-status": "^1.3.1",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"mysql2": "^1.6.4",
"redis": "^2.8.0",
"sequelize": "^4.42.0",
"uuid4": "^1.1.4",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"jest": "^24.3.1",
"random-string": "^0.2.0",
"regenerator-runtime": "^0.13.1",
"supertest": "^3.4.2"
}
}