-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.56 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": "@nx-mono-repo-deployment-test/source",
"version": "1.0.0",
"license": "MIT",
"packageManager": "yarn@4.0.2",
"scripts": {
"api:dev": "corepack yarn workspace api dev",
"api:build": "corepack yarn workspace api build",
"api:start": "corepack yarn workspace api start",
"web:dev": "corepack yarn workspace web dev",
"web:build": "corepack yarn workspace web build",
"web:start": "corepack yarn workspace web start",
"client:dev": "corepack yarn workspace client dev",
"client:build": "corepack yarn workspace client build",
"client:start": "corepack yarn workspace client start",
"shared:build": "corepack yarn workspace @nx-mono-repo-deployment-test/shared build",
"build:all": "corepack yarn shared:build && corepack yarn api:build && corepack yarn web:build && corepack yarn client:build",
"install:all": "corepack yarn install",
"type-check": "corepack yarn workspace api lint && corepack yarn workspace web type-check && corepack yarn workspace client type-check",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"deploy": "bash scripts/deploy.sh",
"status": "bash scripts/status.sh",
"logs": "bash scripts/logs.sh"
},
"private": true,
"workspaces": [
"apps/api",
"apps/web",
"libs/shared",
"apps/client"
],
"devDependencies": {
"@nx/js": "21.6.5",
"@nx/workspace": "21.6.5",
"nx": "21.6.5",
"prettier": "^3.1.0",
"typescript": "^5.3.3"
}
}