-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 KB
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
31
32
33
34
35
36
37
38
39
{
"name": "battleship",
"version": "0.1.0",
"description": "Battleship in the browser!",
"license": "MIT",
"keywords": [
"server",
"battleship",
"game",
"websocket"
],
"contributors": [
"Alexander DuPree",
"Katherine Kagawa",
"Joshua Carlson"
],
"private": true,
"workspaces": [
"server",
"client",
"common"
],
"scripts": {
"build-common": "cd common && yarn run build",
"build-client": "cd client && yarn run build",
"build-server": "cd server && yarn run build",
"build-all" : "yarn build-common && yarn build-client && yarn build-server",
"clean" : "rm -rf node_modules common/node_modules client/node_modules server/node_modules client/build server/dist",
"predeploy": "yarn clean && yarn install --frozen-lockfile",
"deploy-client" : "yarn predeploy && yarn build-common && yarn build-client",
"deploy-server": "yarn predeploy && yarn build-common && yarn build-server",
"client" : "cd client && yarn start",
"server" : "cd server && yarn start",
"start" : "yarn build-common && concurrently \"yarn server\" \"yarn client\""
},
"dependencies": {
"concurrently": "^6.0.2"
}
}