-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 992 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
25
26
27
28
29
30
31
{
"name": "cct",
"version": "1.0.0",
"description": "Cupboard Configuration Tool",
"repository": {
"type": "git",
"url": "git+https://github.com/relativityhd/CCT.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/relativityhd/CCT/issues"
},
"homepage": "https://cablecard-cct.eu-de.mybluemix.net",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"backend:start": "cd backend && npm run start",
"backend:serve": "cd backend && npm run dev",
"backend:install": "cd backend && npm install",
"frontend:build": "cd frontend && npm run build",
"frontend:serve": "cd frontend && npm run serve",
"frontend:install": "cd frontend && npm install",
"frontend:start": "cd frontend && npx serve -s dist",
"install": "npm run frontend:install && npm run backend:install",
"build": "npm run frontend:build",
"lint": "cd backend && npm run lint; cd ../frontend && npm run lint --fix"
}
}