-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.16 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
{
"name": "networth",
"version": "1.0.0",
"description": "",
"repository": {
"type" : "git",
"url" : "https://github.com/efredin/networth.git"
},
"scripts": {
"build": "npm run build:web && npm run build:api",
"build:web": "cd networth-web && npm run build",
"build:api": "cd networth-api && gradlew.bat build",
"build:docker": "npm run build:docker:web && npm run build:docker:api",
"build:docker:web": "docker build -t efredin/networth-web ./networth-web",
"build:docker:api": "docker build -t efredin/networth-api ./networth-api",
"clean": "npm run clean:web && npm run clean:api",
"clean:web": "cd networth-web && npm run clean",
"clean:api": "cd networth-api && gradlew.bat clean",
"install": "cd networth-web && npm install",
"lint": "cd networth-web && tslint --project ./tslint.json",
"start": "npm run start:web && npm run start:api",
"start:web": "cd networth-web && npm run start",
"start:api": "cd networth-api && gradlew.bat bootRun",
"start:docker": "docker-compose up",
"test": "cd networth-api && gradlew.bat test"
},
"author": "Eric Fredin <[email protected]>",
"license": "ISC"
}