-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1.11 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
{
"name": "olympus-backgammon",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"start": "concurrently --names frontend,backend,olympus-bg 'npm run dev:frontend' 'npm run dev:backend' 'npm run dev:olympus-bg'",
"postinstall": "npm run install:frontend && npm run install:backend && npm run install:olympus-bg",
"install:frontend": "npm install --prefix frontend",
"install:backend": "npm install --prefix backend",
"install:olympus-bg": "npm install --prefix olympus-bg",
"dev:frontend": "npm run dev --prefix frontend",
"dev:backend": "npm start --prefix backend",
"dev:olympus-bg": "npm run dev --prefix olympus-bg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelti/olympus-backgammon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/michaelti/olympus-backgammon/issues"
},
"homepage": "https://github.com/michaelti/olympus-backgammon#readme",
"devDependencies": {
"concurrently": "^6.2.0"
}
}