-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 958 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 958 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
30
31
32
33
34
35
36
37
38
{
"name": "backend-WaysBeans",
"version": "1.0.0",
"description": "api for WaysBeans",
"main": "index.js",
"scripts": {
"local": "nodemon index.js",
"build": "npx sequelize-cli db:migrate --env production && npx sequelize-cli db:seed:all",
"start": "node index.js",
"client": "npm start --prefix ../WaysBeans",
"dev": "concurrently \"npm run local\" \"npm run client\" "
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.10.0 <8"
},
"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": "^2.6.11",
"pg": "^8.7.1",
"sequelize": "^6.32.0",
"sequelize-cli": "^6.3.0",
"socket.io": "^4.4.0"
},
"devDependencies": {
"concurrently": "^6.4.0",
"nodemon": "^2.0.15"
}
}