-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.28 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.28 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
{
"name": "vitak-tracker",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:cf": "opennextjs-cloudflare build",
"build:fast": "TSC_COMPILE_ON_ERROR=true next build",
"build:analyze": "ANALYZE=true next build",
"preview": "wrangler dev",
"deploy": "wrangler deploy",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "next lint",
"typecheck": "tsc --noEmit --incremental --tsBuildInfoFile .tsbuildinfo",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply vitak-tracker-db --local",
"db:migrate:remote": "wrangler d1 migrations apply vitak-tracker-db --remote",
"db:studio": "drizzle-kit studio",
"sync:usda": "bun run scripts/sync-usda-foods.ts",
"sync:usda:dry-run": "bun run scripts/sync-usda-foods.ts --dry-run --verbose",
"seed:remote": "bun run scripts/seed-remote-d1.ts",
"prepare": "husky"
},
"dependencies": {
"@clerk/nextjs": "^6.23.0",
"@hookform/resolvers": "^3.10.0",
"@opennextjs/cloudflare": "^1.19.0",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@stripe/stripe-js": "^7.4.0",
"@tailwindcss/postcss": "4",
"@tanstack/react-query": "^5.81.2",
"@trpc/client": "^11.4.2",
"@trpc/next": "^11.4.2",
"@trpc/react-query": "^11.4.2",
"@trpc/server": "^11.4.2",
"@types/crypto-js": "^4.2.2",
"@types/dompurify": "^3.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"drizzle-orm": "latest",
"idb": "^8.0.3",
"isomorphic-dompurify": "^2.26.0",
"lucide-react": "0.469",
"next": "15",
"react": "latest",
"react-dom": "latest",
"react-hook-form": "^7.58.1",
"recharts": "2",
"stripe": "^18.2.0",
"superjson": "^2.2.2",
"svix": "^1.46.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "3",
"zustand": "^5.0.5"
},
"devDependencies": {
"@cloudflare/workers-types": "latest",
"@next/bundle-analyzer": "15",
"@testing-library/react": "^16.3.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/better-sqlite3": "latest",
"@types/node": "^22.15.33",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"@vitest/coverage-v8": "^4.1.4",
"autoprefixer": "^10.4.21",
"better-sqlite3": "latest",
"drizzle-kit": "latest",
"eslint": "^9.29.0",
"eslint-config-next": "15",
"fake-indexeddb": "^6.2.5",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"postcss": "^8.5.6",
"prettier": "^3.6.1",
"sharp": "^0.34.3",
"tailwindcss": "3",
"typescript": "5",
"vitest": "^4.1.4",
"wrangler": "latest"
}
}