-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 874 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
24
{
"name": "star-wars-generations",
"version": "1.0.1",
"private": false,
"description": "A persistant multiplayer online browser game in the Star Wars universe",
"author": "Brian Kennedy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bpkennedy/star-wars-generations"
},
"homepage": "https://github.com/bpkennedy/star-wars-generations#readme",
"engines": {
"node": "10.0.0"
},
"scripts": {
"build:client": "cd client && npm install && cd ..",
"build:api": "cd api && npm install && cd ..",
"test:client": "npm run build:client && cd client && npm run test:e2e:ci && cd ..",
"test:api": "npm run build:api && cd api && npm run test:ci && cd ..",
"serve:api": "cd api && npm run serve",
"start": "npm run build:client && npm run build:api && npm run serve:api"
},
"dependencies": {}
}