-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.49 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@edgefirst-dev/starter-worker",
"description": "A starter template for Edge-first applications",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"dev": "bun run ./scripts/dev.ts",
"build": "react-router build",
"deploy": "wrangler deploy",
"start": "wrangler dev",
"typecheck": "tsc",
"rr:typegen": "react-router typegen",
"rr:routes": "react-router routes",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"predb:migrate:local": "bun run orm:generate",
"db:migrate:local": "bun run db:migrate --local",
"postdb:migrate:local": "bun run quality:fix",
"db:migrate": "wrangler d1 migrations apply",
"orm:generate": "drizzle-kit generate --config drizzle.config.ts"
},
"dependencies": {
"@edgefirst-dev/api-client": "^0.0.1",
"@edgefirst-dev/data": "^0.0.2",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@react-router/cloudflare": "7.0.0-pre.1",
"bcryptjs": "^2.4.3",
"bowser": "^2.11.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.35.1",
"edgekitjs": "^0.0.45",
"inflected": "^2.1.0",
"isbot": "^5",
"lucide-react": "^0.454.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "7.0.0-pre.1",
"spin-delay": "^2.0.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"urlpattern-polyfill": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20241022.0",
"@react-router/dev": "7.0.0-pre.1",
"@tailwindcss/vite": "^4.0.0-alpha.26",
"@total-typescript/ts-reset": "^0.6.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bcryptjs": "^2.4.6",
"@types/bun": "^1.1.12",
"@types/inflected": "^2.1.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.26.2",
"msw": "^2.5.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-env-only": "^3.0.3",
"vite-plugin-cjs-interop": "^2.1.4",
"vite-tsconfig-paths": "^5.0.1",
"wrangler": "^3.83.0"
},
"trustedDependencies": ["@biomejs/biome"]
}