-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 879 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
{
"name": "truerecycler",
"version": "1.0.0",
"description": "Find what material goes to which bin",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix true-recycler-front",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix true-recycler-front && npm run build --prefix true-recycler-front"
},
"author": "salEZY",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-validator": "^6.6.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.15",
"mongoose-unique-validator": "^2.0.3",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.20",
"uuid": "^8.3.0"
}
}