-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.73 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
{
"name": "form-forge",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "command -v pre-commit >/dev/null 2>&1 && pre-commit install || true",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"clean": "turbo clean",
"check-types": "turbo check-types",
"shadcn": "pnpm --filter @repo/ui shadcn",
"tauri": "pnpm --filter native tauri dev",
"check": "pnpm exec ultracite check",
"fix": "pnpm exec ultracite fix",
"test": "turbo test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:docker": "DOCKER_BUILDKIT=1 docker compose -f compose.e2e.yml up --build --abort-on-container-exit --exit-code-from playwright",
"test:e2e:docker:down": "docker compose -f compose.e2e.yml down -v"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@playwright/test": "^1.58.2",
"@types/node": "^25.3.0",
"knip": "^5.85.0",
"pdf-lib": "^1.17.1",
"turbo": "^2.8.10",
"typescript": "5.9.3",
"ultracite": "7.2.4"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"@babel/helpers@<7.26.10": ">=7.26.10",
"@babel/runtime-corejs3@<7.26.10": ">=7.26.10",
"@trpc/server@>=11.0.0 <11.8.0": ">=11.8.0",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
"esbuild@<=0.24.2": ">=0.25.0",
"glob@>=10.2.0 <10.5.0": ">=10.5.0",
"glob@>=11.0.0 <11.1.0": ">=11.1.0",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"qs@<6.14.1": ">=6.14.1",
"tmp@<=0.2.3": ">=0.2.4"
}
}
}