-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1011 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
{
"name": "retailkarbar",
"module": "ESNext",
"type": "module",
"version": "1.0.0",
"description": "retail store ecommerce",
"main": "index.js",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"create-react-app": "^3.4.1",
"cypress": "^12.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"firebase": "^9.9.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.25",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"path": "^0.12.7"
},
"scripts": {
"start": "node Server.js",
"server": "nodemon Server.js",
"client": "npm start --prefix client",
"dev": "set NODE_ENV=development&&concurrently \"npm run server\" \"npm run client \"",
"heroku-postbuild": "set NODE_ENV=production&&cd client && npm install && npm run build"
},
"author": "Shakti Mandal",
"license": "ISC"
}