forked from iMykhailychenko/online-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 808 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
{
"name": "online-shop",
"version": "1.0.0",
"description": "ONLINE SHOP",
"main": "./server/dist/src/main.js",
"scripts": {
"client": "cd ./client/ && npm install && npm run build && cd ../",
"server": "cd ./server/ && npm install && npm run build && cd ../",
"move": "rm -rf ./server/client/ && mv ./client/build ./server/client",
"heroku-prebuild": "npm run client && npm run server && npm run move",
"start": "npm --prefix ./server/ run start:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iMykhailychenko/online-shop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/iMykhailychenko/online-shop/issues"
},
"homepage": "https://github.com/iMykhailychenko/online-shop#readme"
}