-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.5 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.5 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
{
"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 --test-scheduled",
"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:drop": "rm -rf ./.wrangler",
"db:seed": "wrangler d1 execute --local --file=./db/seed.sql",
"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",
"setup": "bun run ./scripts/setup.ts"
},
"dependencies": {
"@edgefirst-dev/api-client": "^0.1.0",
"@edgefirst-dev/data": "^0.0.4",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@paralleldrive/cuid2": "^2.2.2",
"@react-router/cloudflare": "^7.4.0",
"@react-router/fs-routes": "^7.4.0",
"bcryptjs": "^3.0.2",
"bowser": "^2.11.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.40.1",
"edgekitjs": "^0.0.49",
"inflected": "^2.1.0",
"isbot": "^5.1.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.4.0",
"remix-auth": "^4.1.0",
"tailwind-merge": "^3.0.2",
"urlpattern-polyfill": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20250319.0",
"@octokit/core": "^6.1.4",
"@react-router/dev": "^7.4.0",
"@tailwindcss/vite": "^4.0.15",
"@total-typescript/ts-reset": "^0.6.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bcryptjs": "^3.0.0",
"@types/bun": "^1.2.5",
"@types/inflected": "^2.1.3",
"@types/libsodium-wrappers": "^0.7.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"cloudflare": "^4.2.0",
"consola": "^3.4.2",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.5",
"libsodium-wrappers": "^0.7.15",
"msw": "^2.7.3",
"postcss": "^8.5.3",
"tailwindcss": "^4.0.15",
"typescript": "^5.8.2",
"vite": "^6.2.2",
"vite-env-only": "^3.0.3",
"vite-plugin-cjs-interop": "^2.2.0",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "3.114.2"
},
"trustedDependencies": ["@biomejs/biome"],
"bun-create": {
"postinstall": ["bun run ./scripts/setup.ts"],
"start": "bun run dev"
}
}