-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.9 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.9 KB
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
41
42
{
"name": "with-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "concurrently -c blue,green,red -n api,front,admin \"npm run dev:api\" \"delay 2 && npm run dev:front\" \"delay 2 && npm run dev:admin\"",
"build": "npm ci && node ./build",
"build:ngrok": "npm ci && node ./build -n",
"start": "concurrently -c blue,green,red -n api,front,admin \"npm run start:api\" \"npm run start:front\" \"npm run start:admin\" --kill-others",
"start:ngrok": "concurrently -c blue,green,red -n api,front,admin \"npm run start:api:ngrok\" \"npm run start:front\" \"npm run start:admin\" --kill-others",
"dev:api": "npm run dev -w apps/api",
"dev:front": "npm run dev -w apps/front",
"dev:admin": "npm run dev -w apps/admin",
"stop:api": "npm run stop -w apps/api && npm run stop:build -w apps/api",
"start:api": "npm run start:build -w apps/api",
"start:api:ngrok": "npm run start:build:ngrok -w apps/api",
"start:front": "npm run start -w apps/front",
"start:admin": "npm run start -w apps/admin",
"build:api": "npm run build -w apps/api",
"build:front": "npm run build -w apps/front",
"build:admin": "npm run build -w apps/admin",
"build:front:admin": "concurrently -c green,red -n front,admin \"npm run build:front\" \"npm run build:admin\"",
"preinstall": "npm run create-package-lock -w apps/api",
"format": "concurrently -c blue,green,red -n api,front,admin \"npm run format -w apps/api && npm run lint -w apps/api\" \"npm run format -w apps/front && npm run lint -w apps/front\" \"npm run format -w apps/admin && npm run lint -w apps/admin\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^12.0.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"delay-cli": "^2.0.0"
},
"devDependencies": {
"ngrok": "^5.0.0-beta.2"
}
}