-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.87 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
{
"name": "flext",
"version": "0.0.1",
"private": true,
"type": "module",
"packageManager": "bun@1.x",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "bun run .output/server/index.mjs",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"tsc": "tsc --extendedDiagnostics",
"test": "bun test",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit introspect",
"db:studio": "drizzle-kit studio --port 3010",
"db:migrate": "drizzle-kit migrate",
"upgrade-packages": "ncu --upgrade -x tailwindcss,@types/react,@types/react-dom,vite-tsconfig-paths,zod,react-tooltip && bun install"
},
"dependencies": {
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@orpc/client": "^1.14.8",
"@orpc/server": "^1.14.8",
"@orpc/tanstack-query": "^1.14.8",
"@react-icons/all-files": "^4.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.20",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.32",
"autoprefixer": "^10.5.4",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csstype": "^3.2.3",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.42.2",
"imapflow": "1.6.1",
"immer": "^11.1.15",
"jose": "^6.2.4",
"leaflet": "1.9.4",
"mini-svg-data-uri": "^1.4.4",
"mysql2": "^3.23.1",
"nitro": "^3.0.260610-beta",
"nodemailer": "^9.0.3",
"party-js": "^2.2.0",
"postcss": "^8.5.22",
"postcss-import": "^16.1.1",
"prismjs": "^1.30.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-tooltip": "^4.5.1",
"react-use": "^17.6.1",
"short-uuid": "^6.0.3",
"superjson": "^2.2.6",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^3.4.17",
"type-fest": "^5.8.0",
"validator": "^13.15.35",
"zod": "^3.24.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bcrypt": "^6.0.0",
"@types/bun": "^1.3.14",
"@types/leaflet": "^1.9.22",
"@types/node": "^26.1.1",
"@types/nodemailer": "^8.0.1",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/validator": "^13.15.10",
"@vitejs/plugin-react": "^6.0.4",
"drizzle-kit": "^0.31.10",
"npm-check-updates": "^22.2.9",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vite-plugin-svgr": "^5.2.0",
"vite-tsconfig-paths": "^5.1.4"
}
}