-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.54 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
{
"name": "shortlink",
"version": "0.1.108",
"private": true,
"type": "module",
"scripts": {
"dev": "node --env-file-if-exists=.dev.vars node_modules/vite/bin/vite.js",
"build": "vite build",
"preview": "npm run build && node --env-file-if-exists=.dev.vars node_modules/vite/bin/vite.js preview",
"deploy": "npm run build && node scripts/apply-domain.mjs && wrangler deploy -c dist/shortlink/wrangler.json && node scripts/postdeploy.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.worker.json && tsc --noEmit -p tsconfig.node.json",
"cf-typegen": "wrangler types",
"db:generate": "drizzle-kit generate",
"db:generate:sqlite": "drizzle-kit generate --config=drizzle.config.sqlite.ts",
"db:migrate": "drizzle-kit migrate",
"db:migrate:d1": "node scripts/d1-migrate.mjs",
"db:studio": "drizzle-kit studio",
"test:e2e": "tsx tests/e2e.ts",
"test:captcha": "tsx tests/captcha.ts",
"test:captcha:flow": "node --env-file-if-exists=.dev.vars node_modules/tsx/dist/cli.mjs tests/captcha-flow.ts",
"test:password": "tsx tests/password.ts",
"test:routing": "tsx tests/routing.ts",
"test:ai": "tsx tests/ai-assistant.ts",
"test:captcha:risk": "tsx tests/captcha-risk.ts"
},
"dependencies": {
"@fontsource/ibm-plex-sans-thai": "^5.2.8",
"@fontsource/press-start-2p": "^5.2.7",
"@hono/zod-validator": "^0.8.0",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-popover": "^1.1.16",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-switch": "^1.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.23",
"lucide-react": "^1.17.0",
"postgres": "^3.4.9",
"qr-code-styling": "^1.9.2",
"qrcode-generator": "^2.0.4",
"react": "^19.2.7",
"react-colorful": "^5.7.0",
"react-dom": "^19.2.7",
"react-router-dom": "^7.17.0",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.40.0",
"@electric-sql/pglite": "^0.5.1",
"@napi-rs/canvas": "^1.0.0",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"wrangler": "^4.98.0"
}
}