-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "gymrat-drizzle",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vinext dev",
"build": "vite build",
"start": "vinext start",
"deploy": "vite build && wrangler deploy",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint -c .oxlintrc.json --type-aware --type-check --deny-warnings",
"lint:fix": "oxlint -c .oxlintrc.json --type-aware --type-check --fix",
"generate:migration": "drizzle-kit generate --config=drizzle-kit.config.ts",
"run:migration": "wrangler d1 execute gymrat --file",
"studio": "drizzle-kit studio --config=drizzle-kit.config.ts"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@hono/zod-validator": "^0.7.6",
"@tanstack/react-query": "^5.90.21",
"bcryptjs": "^2.4.3",
"date-fns": "^3.6.0",
"downshift": "^8.5.0",
"drizzle-orm": "^1.0.0-beta.16-ea816b6",
"framer-motion": "^11.3.24",
"fuse.js": "^7.0.0",
"hono": "^4.12.5",
"iron-session": "^8.0.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0",
"usehooks-ts": "^3.1.1",
"vinext": "^0.0.26",
"worker-mailer": "latest",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.26.1",
"@tailwindcss/vite": "^4.2.1",
"@types/bcryptjs": "^2.4.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^1.0.0-beta.16-ea816b6",
"next": "^16.1.6",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.71.0"
}
}