-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
40 lines (40 loc) · 1.59 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
32
33
34
35
36
37
38
39
40
{
"name": "hfl-signage-player",
"version": "0.3.0",
"description": "Digital signage player written by Henrik Franciscus Leppä (HFL)",
"author": "Henrik Franciscus Leppä",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/henrik-leppa/hfl-signage-player.git"
},
"bugs": {
"url": "https://github.com/henrik-leppa/hfl-signage-player/issues"
},
"homepage": "https://github.com/henrik-leppa/hfl-signage-player#readme",
"scripts": {
"ensure-env": "npm-run-all --parallel --print-label --aggregate-output ensure-env:*",
"ensure-env:back-end": "cd back-end && npm run ensure-env",
"ensure-env:front-end": "cd front-end && npm run ensure-env",
"ensure-env:management-ui": "cd management-ui && npm run ensure-env",
"install:back-end": "cd back-end && npm install",
"install:front-end": "cd front-end && npm install",
"install:management-ui": "cd management-ui && npm install",
"postinstall": "npm-run-all --parallel --print-label --aggregate-output install:*",
"start": "npm-run-all --parallel --print-label start:*",
"start:back-end": "cd back-end && npm start",
"start:front-end": "cd front-end && npm start",
"start:management-ui": "cd management-ui && npm start",
"test": "npm-run-all --parallel --print-label --aggregate-output test:*",
"test:back-end": "cd back-end && npm test",
"test:front-end": "cd front-end && npm test",
"test:management-ui": "cd management-ui && npm test"
},
"engines": {
"node": "^8.11.3",
"npm": "^5.6.0"
},
"devDependencies": {
"npm-run-all": "^4.1.2"
}
}