-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.05 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
{
"name": "epass",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:web": "vite",
"dev:api": "wrangler pages dev --binding IS_DEV=\"1\"",
"build": "tsc && vite build",
"deploy": "wrangler pages deploy",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"init-db:local": "wrangler d1 execute epass-db --local --file=./schema.sql",
"init-db:remote": "wrangler d1 execute epass-db --remote --file=./schema.sql"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@tabler/icons-react": "^3.11.0",
"@tanstack/query-sync-storage-persister": "^5.51.9",
"@tanstack/react-query": "^5.51.9",
"@tanstack/react-query-persist-client": "^5.51.9",
"@tanstack/react-router": "^1.45.6",
"clsx": "^2.1.1",
"dayjs": "^1.11.12",
"jose": "^5.6.3",
"jotai": "^2.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.52.1",
"react-turnstile": "^1.1.3",
"tailwind-merge": "^2.4.0",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240718.0",
"@tanstack/router-devtools": "^1.45.6",
"@tanstack/router-plugin": "^1.45.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.6",
"turnstile-types": "^1.2.1",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-static-copy": "^1.0.6",
"wrangler": "^3.65.1"
}
}