-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.65 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
{
"type": "module",
"scripts": {
"dev": "echo \"export default false\" > ./src/config/is_prod.ts && vite",
"client": "vite --mode client",
"build": "$npm_execpath run version && vite build --mode client && cp -f ./dist/.vite/manifest.json ./src/lib/manifest.json && vite build",
"preview": "wrangler pages dev dist",
"deploy": "$npm_execpath run build && wrangler pages deploy dist",
"version": "echo \"export default `date +'%s'`\" > ./src/config/build_time.ts && echo \"export default true\" > ./src/config/is_prod.ts"
},
"dependencies": {
"@date-fns/utc": "^2.1.0",
"@hono/react-renderer": "^0.2.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@sindresorhus/slugify": "^2.2.1",
"axios": "^1.7.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"hono": "^4.5.11",
"lucide-react": "^0.471.1",
"next-themes": "^0.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-share": "^5.1.1",
"remarkable": "^2.0.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240903.0",
"@hono/vite-cloudflare-pages": "^0.4.2",
"@hono/vite-dev-server": "^0.18.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.0.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/remarkable": "^2.0.8",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.45",
"rollup-preserve-directives": "^1.1.1",
"tailwindcss": "^3.4.10",
"vite": "^6.0.1",
"wrangler": "^3.75.0"
}
}