-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 839 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 839 Bytes
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": "notes-express",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"make-model1": "npx sequelize-cli model:generate --name user --attributes username:string,email:string,password:string",
"make-model2": "npx sequelize-cli model:generate --name note --attributes content:string,author:string",
"migrate": "npx sequelize-cli db:migrate",
"down": "npx sequelize-cli db:migrate:undo"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3"
},
"devDependencies": {
"sequelize-cli": "^6.4.1"
}
}