forked from nikau-2018/pachack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 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
{
"name": "pachack-scaffold",
"version": "0.1.0",
"description": "Wire up pachack-client and pachack-server.",
"main": "index.js",
"repository": "[email protected]:richchurcher/pachack-scaffold",
"author": "EDA",
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"concurrently": "^4.0.1"
},
"scripts": {
"client": "cd client && yarn start",
"dev": "concurrently --kill-others-on-fail \"yarn client\" \"yarn server\"",
"install:client": "cd client && yarn",
"install:server": "cd server && yarn",
"message": "echo \"\n\n ===== DEVELOPMENT repo only. (You probably meant yarn dev.) =====\n\n\"",
"preinstall": "yarn install:client && yarn install:server",
"server": "cd server && yarn dev",
"start": "yarn --silent message && exit 1"
}
}