-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.37 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.37 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
{
"name": "sr347",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler deploy",
"cf-typegen": "wrangler types",
"typecheck": "tsc",
"db:migrate-local": "wrangler d1 migrations apply DATABASE --local",
"db:pull-remote": "rm -f ./remote.sql && wrangler d1 export sr347 --remote --output=./remote.sql",
"db:import-remote": "rm -rf .wrangler/state/v3/d1/* && wrangler d1 execute sr347 --local --file=./remote.sql"
},
"dependencies": {
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.1.3",
"@tanstack/react-router": "^1.168.22",
"@tanstack/react-start": "^1.167.41",
"@upstash/redis": "^1.31.3",
"ahooks": "^3.9.7",
"classnames": "^2.5.1",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.45.2",
"lodash": "^4.17.21",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-string-replace": "^1.1.1",
"swr": "^2.4.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.32.3",
"@deox/drizzle-d1-utils": "^0.0.3",
"@tailwindcss/vite": "^4.2.2",
"@types/lodash": "^4.17.4",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^6.0.1",
"better-sqlite3": "^12.9.0",
"drizzle-kit": "^0.31.10",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"vite": "^8.0.8",
"vite-plugin-svgr": "^5.2.0",
"wrangler": "^4.83.0"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"arrowParens": "always",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"jsxSingleQuote": false,
"printWidth": 160,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
},
"engines": {
"node": ">=18.0.0",
"pnpm": "^9.4.0"
},
"packageManager": "pnpm@9.4.0"
}