-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
31 lines (31 loc) · 1 KB
/
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
25
26
27
28
29
30
31
{
"name": "codenames",
"version": "1.1.1",
"description": "A React JS adaption of the Codenames boardgame. Uses Express to control games server-side.",
"main": "index.js",
"private": true,
"scripts": {
"client-install": "cd client && npm install",
"server-install": "cd server && npm install",
"client-build": "cd client && npm run build",
"start-all-dev": "concurrently \"npm run client\" \"npm run server-dev\"",
"start-all": "concurrently \"npm run server\" \"npm run client\"",
"server-dev": "node server/index.js",
"server": "pm2 start server/index.js --name Codenames",
"client": "npm start --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koosvary/codenames.git"
},
"author": "Lachlan Meyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/koosvary/codenames/issues"
},
"homepage": "https://github.com/koosvary/codenames#readme",
"dependencies": {
"concurrently": "^3.6.0",
"pm2": "^3.0.0"
}
}