-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.13 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
51
52
53
54
55
56
57
{
"name": "parkly-monorepo",
"version": "1.0.0",
"private": true,
"type": "commonjs",
"onlyBuiltDependencies": [
"@prisma/engines",
"prisma",
"sharp"
],
"scripts": {
"dev:api": "pnpm --dir apps/api dev",
"dev:web": "pnpm --dir apps/web dev:web",
"build:web": "pnpm --dir apps/web build:web",
"smoke:web": "pnpm --dir apps/web smoke:web",
"smoke:web:dist": "pnpm --dir apps/web smoke:web:dist",
"typecheck:api": "pnpm --dir apps/api typecheck",
"typecheck:web": "pnpm --dir apps/web exec tsc --noEmit",
"db:migrate": "pnpm --dir apps/api db:migrate",
"db:grant:app": "pnpm --dir apps/api db:grant:app",
"db:reset": "pnpm --dir apps/api db:migrate && pnpm --dir apps/api db:seed:enterprise",
"db:seed": "pnpm --dir apps/api db:seed:enterprise",
"db:seed:min": "pnpm --dir apps/api db:seed:min",
"postinstall": "pnpm --dir apps/api prisma:generate",
"prisma:generate": "pnpm --dir apps/api prisma:generate",
"test:api:unit": "pnpm --dir apps/api test:vitest:coverage",
"test:api:node": "pnpm --dir apps/api test:node",
"test:api": "pnpm -s test:api:unit && pnpm -s test:api:node",
"test:web:unit": "pnpm --dir apps/web test:unit:coverage",
"test:web:e2e": "pnpm --dir apps/web test:e2e",
"test:web": "pnpm -s test:web:unit && pnpm -s build:web",
"test:ci": "node ./scripts/run-quality-gate.mjs --mode ci",
"test:full": "node ./scripts/run-quality-gate.mjs --mode full",
"docs:spec:docx": "node ./scripts/build-spec-docx.mjs",
"test:pr02": "pnpm --dir apps/api test:pr02",
"test:pr04": "node --import ./apps/api/node_modules/tsx/dist/loader.mjs --test apps/api/src/tests/pr04-capture-auth-idempotency.test.ts"
},
"packageManager": "pnpm@10.0.0",
"pnpm": {
"overrides": {
"@hono/node-server": "1.19.10",
"effect": "3.20.0",
"fast-xml-parser": "5.5.6",
"hono": "4.12.4",
"path-to-regexp@0.1.12": "0.1.13",
"path-to-regexp@8.3.0": "8.4.0",
"picomatch@2.3.1": "2.3.2",
"picomatch@4.0.3": "4.0.4"
}
},
"devDependencies": {
"docx": "^9.5.1"
},
"dependencies": {
"axios": "^1.9.0"
}
}