forked from johannth/asana-inbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 859 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "asana-inbox",
"version": "0.1.0",
"private": true,
"scripts": {
"bootstrap": "concurrently \"yarn run bootstrap-server\" \"yarn run bootstrap-client\"",
"bootstrap-server": "cd server && yarn install",
"bootstrap-client": "cd client && yarn install",
"start-dev": "source .env && concurrently \"yarn run start-server-dev\" \"yarn run start-client-dev\"",
"start-server-dev": "cd server && yarn start-dev",
"start-client-dev": "cd client && yarn start",
"deploy": "yarn deploy-server && yarn deploy-client",
"deploy-server": "git push heroku `git subtree split --prefix server master`:master --force",
"deploy-client": "source .env && cd client && yarn build && yarn deploy",
"test-client": "cd client && yarn test"
},
"dependencies": {},
"devDependencies": {
"concurrently": "^3.1.0"
}
}