-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.27 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
{
"name": "frc-design-app",
"private": true,
"version": "0.0.0",
"type": "module",
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write"
]
},
"scripts": {
"dev": "wrangler d1 migrations apply db --local && vite dev",
"tsc": "tsc -b",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "npm run build && vite preview",
"deploy": "npm run build && wrangler d1 migrations apply db --remote && wrangler deploy",
"typegen": "wrangler types",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@mantine/core": "^9.3.0",
"@mantine/hooks": "^9.3.0",
"@mantine/modals": "^9.3.0",
"@mantine/notifications": "^9.3.0",
"@tabler/icons-react": "^3.44.0",
"@tanstack/react-query": "^5.100.10",
"@tanstack/react-router": "^1.169.2",
"@tanstack/react-router-devtools": "^1.166.13",
"arctic": "^3.7.0",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.18",
"immer": "^11.1.8",
"minisearch": "^7.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript-parsec": "^0.3.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.36.4",
"@cloudflare/vitest-pool-workers": "^0.16.16",
"@eslint/js": "^10.0.1",
"@tanstack/router-plugin": "^1.168.2",
"@types/node": "^24.12.4",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^10.2.1",
"eslint-plugin-react-dom": "^5.7.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-react-x": "^5.7.8",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"postcss": "^8.5.15",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"sass": "^1.99.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10",
"vitest": "^4.1.9",
"wrangler": "^4.93.0"
}
}