-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.16 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.16 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
{
"name": "plateunlp",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc --noEmit",
"start": "node .output/server/index.mjs",
"lint:only": "biome lint .",
"lint:fix": "biome check --write .",
"lint": "tsc --noEmit && pnpm lint:only",
"db:generate": "drizzle-kit generate --name",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx db/seed.ts",
"db:init": "tsx db/dev-init.ts && pnpm db:migrate && pnpm db:seed"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": ">=22.16.0",
"pnpm": ">=10.22.0"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@better-auth/drizzle-adapter": "^1.5.5",
"@date-fns/tz": "^1.3.1",
"@date-fns/utc": "^2.1.1",
"@libsql/client": "^0.17.0",
"@t3-oss/env-core": "^0.13.10",
"@tanstack/react-form": "^1.28.5",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.167.4",
"@tanstack/react-start": "^1.166.16",
"@tanstack/react-table": "^8.21.3",
"@tensorflow/tfjs": "^4.22.0",
"@uidotdev/usehooks": "^2.4.1",
"@visx/axis": "^3.12.0",
"@visx/curve": "^3.12.0",
"@visx/event": "^3.12.0",
"@visx/grid": "^3.12.0",
"@visx/group": "^3.12.0",
"@visx/pattern": "^3.12.0",
"@visx/responsive": "^3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/tooltip": "^3.12.0",
"@visx/vendor": "^3.12.0",
"@visx/xychart": "^3.12.0",
"better-auth": "^1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"decimal.js": "^10.6.0",
"dedent": "^1.7.2",
"drizzle-orm": "^0.45.1",
"fits2js": "^0.0.6",
"fumadocs-core": "^16.6.17",
"fumadocs-mdx": "^14.2.10",
"fumadocs-ui": "^16.6.17",
"image-js": "^1.4.0",
"katex": "^0.16.38",
"match-sorter": "^8.2.0",
"mathjs": "^15.1.1",
"ml-levenberg-marquardt": "^5.0.0",
"nanoid": "^5.1.7",
"nanoid-dictionary": "^5.0.0",
"neverthrow": "^8.2.0",
"nitro": "3.0.260311-beta",
"onnxruntime-web": "^1.24.3",
"picocolors": "^1.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-zoom-pan-pinch": "^3.7.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@iconify/json": "^2.2.451",
"@iconify/tailwind4": "^1.2.3",
"@std/csv": "npm:@jsr/std__csv@^1.0.6",
"@tailwindcss/vite": "0.0.0-insiders.f302fce",
"@tanstack/react-router-devtools": "^1.166.9",
"@tanstack/react-router-ssr-query": "^1.166.9",
"@types/mdx": "^2.0.13",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.10",
"drizzle-seed": "^0.3.1",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"vite": "^8.0.0"
}
}