-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.17 KB
/
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
30
31
{
"scripts": {
"dev": "cd front && npm run start & cd server && nodemon app.js",
"start": "cd server && node app.js",
"fix-render": "cd server && env NODE_ENV=development node app.js",
"start-render": "cd server && env NODE_ENV=test node app.js",
"start-renderhome": "cd server && env NODE_ENV=test2 node app.js",
"install-front": "cd front && npm install",
"build": "cd front && npm run build",
"full-install": "npm run install-front && npm run build && npm run insall",
"migratelocalpg": "env NODE_ENV=test2 npx sequelize db:migrate",
"insall": "npm install && npm install sequelize-cli && env NODE_ENV=test npx sequelize db:migrate",
"insall2": "npm install && npm install sequelize-cli && npm install sqlite3 && env NODE_ENV=development npx sequelize db:migrate"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"csurf": "^1.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"path": "^0.12.7",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.27.0",
"sqlite3": "^5.1.4"
}
}