-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.51 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "runestone",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"engines": {
"node": ">=22.13.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.13.0",
"onFail": "warn"
},
"packageManager": {
"name": "npm",
"version": ">=11.5.1 <12.0.0",
"onFail": "warn"
}
},
"packageManager": "npm@11.5.1",
"overrides": {
"stats-gl": {
"three": "^0.172.0"
}
},
"scripts": {
"dev": "vite dev --port 3000",
"dev:convex": "convex dev",
"convex:dev": "convex dev",
"build": "vite build",
"preview": "vite preview",
"routes:generate": "tsr generate",
"routes:watch": "tsr watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:ci": "biome ci .",
"lint:fsd": "steiger ./src",
"lint:structure": "ast-grep scan --error -c sgconfig.yml . && node tools/structural-lint/scripts/check-fsd-segment-paths.mjs --repo .",
"lint:structure:test": "ast-grep test -c sgconfig.yml",
"lint:purity": "npm run lint:structure",
"typecheck": "tsr generate && tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:run": "vitest run --passWithNoTests",
"test:coverage": "vitest run --coverage",
"theme:sync": "node scripts/sync-manifest-colors.mjs",
"theme:check": "node scripts/check-design-tokens.mjs",
"ci:preflight": "npm run theme:check && npm run lint:ci && npm run lint:structure && npm run typecheck && npm run lint:fsd && npm run test:run",
"ci:local": "npm run theme:check && npm run lint:ci && npm run lint:structure && npm run typecheck && npm run lint:fsd && npm run test:coverage",
"prepare": "node scripts/install-hooks.mjs"
},
"dependencies": {
"@convex-dev/react-query": "latest",
"@dagrejs/dagre": "^1.1.0",
"@fontsource-variable/geist": "^5.2.8",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.0",
"@react-three/rapier": "~2.0.0",
"@tailwindcss/vite": "^4.0.0",
"@tanstack/react-form": "^1.0.0",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-router": "~1.170.15",
"@tanstack/react-start": "~1.168.24",
"@tanstack/store": "^0.7.0",
"@tanstack/zod-adapter": "~1.167.0",
"@xstate/react": "^6.1.0",
"@xyflow/react": "^12.10.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"convex": "^1.25.0",
"graphology": "^0.25.0",
"lucide-react": "latest",
"motion": "^12.36.0",
"nitro": "npm:nitro-nightly@latest",
"radix-ui": "^1.4.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-responsive": "^10.0.1",
"shadcn": "^4.1.0",
"tailwind-merge": "^3.0.0",
"tailwindcss": "^4.0.0",
"three": "^0.172.0",
"tone": "^14.8.0",
"tw-animate-css": "^1.4.0",
"uuid": "^11.0.0",
"vaul": "^1.1.2",
"web-haptics": "^0.0.6",
"xstate": "^5.19.0",
"zod": "^3.0.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@ast-grep/cli": "^0.43.0",
"@biomejs/biome": "^2.4.12",
"@feature-sliced/steiger-plugin": "latest",
"@tanstack/react-query-devtools": "^5.100.10",
"@tanstack/router-cli": "~1.167.17",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@types/node": "^22.10.2",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@types/three": "latest",
"@types/uuid": "latest",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.8",
"babel-plugin-react-compiler": "^1.0.0",
"happy-dom": "latest",
"lefthook": "latest",
"steiger": "latest",
"typescript": "^5.7.0",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.8"
}
}