-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.01 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.01 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
{
"name": "test-multi-db",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"migration:all": "npm run catalog:migrate && npm run user:migrate",
"catalog:migrate": "sequelize --options-path ./sequelize-opts/.catalog db:migrate",
"catalog:migrate:undo": "sequelize --options-path ./sequelize-opts/.catalog db:migrate:undo",
"catalog:seed:all": "sequelize --options-path ./sequelize-opts/.catalog db:seed:all",
"user:migrate": "sequelize --options-path ./sequelize-opts/.user db:migrate",
"user:migrate:undo": "sequelize --options-path ./sequelize-opts/.user db:migrate:undo",
"user:seed:all": "sequelize --options-path ./sequelize-opts/.user db:seed:all"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"mysql2": "^1.6.5",
"pg": "^7.11.0",
"sequelize": "^5.10.1",
"sequelize-cli": "^5.5.0"
}
}