-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
77 lines (77 loc) · 2.3 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
{
"name": "smail",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build && wrangler pages functions build --outdir build/worker",
"deploy": "pnpm run build && wrangler deploy",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"typegen": "wrangler types",
"preview": "pnpm run build && wrangler dev",
"cf-typegen": "wrangler types",
"format": "pnpm biome format --write ."
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.5",
"@marsidev/react-turnstile": "^1.0.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@remix-run/cloudflare": "^2.13.1",
"@remix-run/cloudflare-pages": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@scaleway/random-name": "^5.1.1",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dompurify": "^3.1.7",
"drizzle-orm": "^0.35.1",
"isbot": "^5.1.17",
"lucide-react": "^0.453.0",
"marked": "^14.1.3",
"nanoid": "^5.0.7",
"negotiator": "^0.6.3",
"postal-mime": "^2.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sanitize-html": "^2.13.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@cloudflare/workers-types": "^4.20241011.0",
"@remix-run/dev": "^2.13.1",
"@types/dompurify": "^3.0.5",
"@types/negotiator": "^0.6.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.26.2",
"eslint": "^9.12.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-tsconfig-paths": "^5.0.1",
"wrangler": "3.80.5"
},
"engines": {
"node": ">=20.0.0"
}
}