-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 819 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
{
"name": "order",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.13.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"data:import": "node data.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run start\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "nevil",
"license": "ISC",
"dependencies": {
"colors": "^1.4.0",
"concurrently": "^7.3.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.5.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.19",
"razorpay": "^2.8.3",
"stripe": "^8.222.0",
"uuid": "^8.3.2"
}
}