-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1004 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "job-queue-manager",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev:backend": "pnpm --filter backend dev",
"dev:frontend": "pnpm --filter frontend dev",
"build:backend": "pnpm --filter backend build",
"build:frontend": "pnpm --filter frontend build",
"migration:run": "pnpm --filter backend ace migration:run",
"migration:rollback": "pnpm --filter backend ace migration:rollback",
"lint": "pnpm --recursive lint",
"typecheck": "pnpm --recursive typecheck"
},
"pnpm": {
"overrides": {
"flatted": ">=3.4.2",
"picomatch": ">=4.0.4",
"brace-expansion": ">=2.0.3",
"defu": ">=6.1.5",
"yaml": ">=2.8.3",
"file-type": ">=21.3.2"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"esbuild",
"vue-demi"
]
},
"devDependencies": {
"nock": "^13.5.6"
}
}