-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 2.11 KB
/
package.json
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
{
"name": "race-stack",
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development npm run wrangler",
"dev": "npm-run-all build --parallel \"dev:*\"",
"start": "cross-env NODE_ENV=production npm run wrangler",
"typecheck": "tsc",
"wrangler": "wrangler pages dev ./public --local --persist",
"generate": "drizzle-kit generate:sqlite --schema=./app/lib/schema.ts",
"up": "drizzle-kit up:sqlite"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.2",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-toast": "^1.1.3",
"@remix-run/cloudflare": "^1.15.0",
"@remix-run/cloudflare-pages": "^1.15.0",
"@remix-run/react": "^1.15.0",
"@remix-validated-form/with-zod": "^2.0.5",
"class-variance-authority": "^0.5.2",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"cross-env": "^7.0.3",
"drizzle-orm": "^0.24.4",
"isbot": "^3.6.8",
"lucide-react": "^0.172.0",
"posthog-js": "^1.55.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.4.0",
"remix-auth-form": "^1.3.0",
"remix-utils": "^6.0.0",
"remix-validated-form": "^4.6.10",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"tiny-invariant": "^1.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.19.0",
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.15.0",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/react-grid-layout": "^1.3.2",
"better-sqlite3": "^8.3.0",
"drizzle-kit": "^0.17.5",
"eslint": "^8.38.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.5",
"wrangler": "^2.15.1"
},
"engines": {
"node": ">=16.13"
}
}