-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 927 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
{
"name": "dylan-merigaud-v2",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cd ./backend/ && npm start",
"postinstall": "concurrently \"npm run install-backend\" \"npm run install-webclient\"",
"install-backend": "cd ./backend/ && npm install",
"install-webclient": "cd ./webclient/ && npm install",
"dev": "concurrently --kill-others \"cd ./webclient && npm run dev\" \"cd ./backend && npm run dev\"",
"build": "cd ./webclient && npm run build",
"heroku-postbuild": "npm run build",
"heroku-test": "heroku local web",
"clean": "concurrently \"npm run clean-webclient\" \"npm run clean-backend\" && shx rm -rf ./node_modules",
"clean-backend": "cd ./backend/ && shx rm -rf ./node_modules",
"clean-webclient": "cd ./webclient/ && shx rm -rf ./node_modules && shx rm -rf ./build"
},
"dependencies": {
"concurrently": "^3.5.1",
"shx": "^0.2.2"
}
}