-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 951 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
30
31
32
33
34
35
36
37
38
39
{
"name": "backend-foodways",
"version": "1.0.0",
"description": "api for foodways",
"main": "index.js",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.10.0 <8"
},
"scripts": {
"start": "nodemon index.js",
"spin": "node index.js",
"client": "npm start --prefix ../foodways",
"dev": "concurrently \"npm start\" \"npm run client\" ",
"vercel-build": "npx sequelize-cli db:migrate --env production"
},
"author": "tc",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.37.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.3",
"node-fetch": "^3.3.1",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.1",
"socket.io": "^4.4.0"
},
"devDependencies": {
"concurrently": "^6.4.0",
"nodemon": "^2.0.15",
"sequelize-cli": "^6.3.0"
}
}