-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 834 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 834 Bytes
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
{
"name": "charades.space",
"version": "1.0.0",
"description": "A companion app for playing [charades](https://en.wikipedia.org/wiki/Charades)",
"scripts": {
"start": "concurrently \"npm run start:client\" \"npm run start:server\"",
"install:client": "cd client && npm install",
"start:client": "cd client && npm start",
"build:client": "cd client && npm run build",
"install:server": "cd server && npm install",
"start:server": "cd server && npm start",
"build:server": "cd server && npm run build",
"test:server": "cd server && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coding-circle/charades.git"
},
"author": "coding-circle",
"license": "ISC",
"homepage": "https://charades.space",
"dependencies": {
"concurrently": "^5.2.0"
}
}