-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
58
59
60
{
"name": "fulleststack",
"version": "1.0.0",
"packageManager": "pnpm@10.10.0",
"license": "MIT",
"engines": {
"node": ">=22.15.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"typecheck": "turbo typecheck",
"build": "turbo build",
"clean": "turbo clean",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"lint:fix": "turbo lint -- --fix",
"deploy": "turbo run deploy",
"check-versions": "node scripts/check-versions.js",
"find-dep-version": "node scripts/find-compatible-version.js",
"syncpack:fix": "syncpack fix-mismatches",
"syncpack:check": "syncpack list-mismatches",
"syncpack:list": "syncpack list",
"template:setup": "bash scripts/sync-from-template.sh setup",
"template:list": "bash scripts/sync-from-template.sh list",
"template:apply": "bash scripts/sync-from-template.sh apply",
"template:sync": "node scripts/sync-template-interactive.js"
},
"devDependencies": {
"semver": "^7.7.1",
"syncpack": "^13.0.4",
"turbo": "^2.5.3"
},
"pnpm": {
"overrides": {
"@cloudflare/workers-types": "^4.20250820.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/react": "~19.1.16",
"@types/react-dom": "~19.1.3",
"@types/react-test-renderer": "~19.1.0",
"better-auth": "^1.2.7",
"eslint": "^9.25.1",
"hono": "^4.7.8",
"jest": "^29.7.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-test-renderer": "19.1.0",
"ts-jest": "^29.3.2",
"typescript": "5.9.2",
"zod": "^3.24.3"
},
"ignoredBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver",
"workerd"
]
}
}