-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.62 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
43
44
45
46
47
48
49
50
{
"name": "genblaze-gmicloud-pipeline",
"private": true,
"scripts": {
"dev": "concurrently --names web,api --prefix-colors blue,green \"pnpm dev:web\" \"pnpm dev:api\"",
"dev:web": "pnpm --filter @genblaze-gmicloud-pipeline/web dev",
"dev:api": "cd services/api && uvicorn main:app --reload --port 8000",
"build": "pnpm --filter @genblaze-gmicloud-pipeline/web build",
"lint": "pnpm --filter @genblaze-gmicloud-pipeline/web lint",
"lint:api": "cd services/api && .venv/bin/ruff check .",
"test:api": "cd services/api && .venv/bin/python -m pytest",
"check:structure": "cd services/api && .venv/bin/python -m pytest tests/test_structure.py -v",
"test:e2e": "pnpm --filter @genblaze-gmicloud-pipeline/web exec playwright test"
},
"devDependencies": {
"concurrently": "^9.1.0"
},
"pnpm": {
"overrides": {
"@babel/core": "7.29.7",
"@hono/node-server": "2.1.1",
"ajv": "8.18.0",
"body-parser": "2.3.0",
"brace-expansion@<2": "1.1.17",
"brace-expansion@>=2 <3": "2.1.3",
"express-rate-limit": "8.2.2",
"fast-uri": "3.1.5",
"flatted": "3.4.2",
"hono": "4.13.2",
"ip-address": "10.3.1",
"js-yaml": "4.3.1",
"lodash": "4.18.1",
"minimatch@<4": "3.1.5",
"minimatch@>=9 <10": "9.0.7",
"minimatch@>=10 <11": "10.2.6",
"nanoid": "3.3.16",
"path-to-regexp": "8.4.0",
"picomatch@<3": "2.3.2",
"picomatch@>=4 <5": "4.0.4",
"postcss": "8.5.23",
"qs": "6.15.2",
"sharp": "0.35.3",
"shell-quote": "1.9.0"
}
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}