-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 924 Bytes
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
{
"name": "user-tasks",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "run-p install:api install:ui",
"install:api": "cd api && npm install",
"install:ui": "cd ui && npm install",
"start": "run-p start:api start:ui",
"start:api": "npm run start --prefix api",
"start:ui": "npm run start --prefix ui",
"build": "run-p build:api build:ui",
"build:api": "cd api && npm run build && cd ..",
"build:ui": "cd ui && npm run build && cd ..",
"prestart:docker": "npm run build",
"start:docker": "docker-compose -f docker/docker-compose.yml up -d --build",
"poststart:docker": "opn http://localhost:8000/",
"stop:docker": "docker-compose -f docker/docker-compose.yml down"
},
"devDependencies": {
"npm-run-all": "^4.0.2",
"opn-cli": "^3.1.0"
}
}