-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (29 loc) · 964 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
{
"name": "nimi-e-commerce-web-app",
"version": "1.0.0",
"description": "",
"scripts": {
"client": "cd client && npm run start",
"server": "cd server && npm run dev",
"app-install":"npm install",
"server-install": "cd server && npm install",
"client-install": "cd client && npm install",
"install-all": "concurrently \"npm run app-install\" \"npm run server-install\" \"npm run client-install\"",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amila1998/nimi-e-commerce-web-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/amila1998/nimi-e-commerce-web-app/issues"
},
"homepage": "https://github.com/amila1998/nimi-e-commerce-web-app#readme",
"dependencies": {
"concurrently": "^7.1.0"
}
}