-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.33 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
{
"name": "balloonies",
"version": "1.0.0",
"description": "balloonies web app",
"main": "index.js",
"scripts": {
"make-model": "npx sequelize-cli model:generate --name User --attributes user_name:string,password:string",
"migrate": "npx sequelize-cli db:migrate --debug",
"undo-migrate": "npx sequelize-cli db:migrate:undo:all",
"make-seed": "npx sequelize-cli seed:generate --name demo-types",
"run-seed": "npx sequelize-cli db:seed:all --debug",
"clear-seed": "npx sequelize-cli db:seed:undo:all",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node backend/server",
"server": "nodemon backend/server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"react-redux": "^7.2.4",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"sequelize": "^6.6.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^6.2.1",
"nodemon": "^2.0.12",
"sequelize-cli": "^6.2.0"
}
}