-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 865 Bytes
/
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
{
"name": "books",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"make-model": "npx sequelize-cli model:generate --name User --attributes firstName:string,lastName:string,email:string",
"make-seed": "npx sequelize-cli seed:generate --name demo-user",
"migrate": "npx sequelize-cli db:migrate",
"down": "npx sequelize-cli db:migrate:undo:all",
"seed": "npx sequelize-cli db:seed:all",
"re-db": "npm run down && npm run migrate && npm run seed",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.5"
},
"devDependencies": {
"sequelize-cli": "^6.5.2"
}
}