-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.44 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
78
79
80
{
"private": true,
"type": "module",
"scripts": {
"build": "bin/vite build",
"lint:fix": "ts-standard app/frontend --fix",
"lint": "ts-standard app/frontend --report",
"lint:yml": "yarn prettier --check data/**/**/*.yml",
"format": "standard --fix",
"format:yml": "yarn run lint:yml --write"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-react-refresh": "^1.3.6",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"standard": "^17.1.0",
"ts-standard": "^12.0.2",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-rails": "^0.5.0",
"vite-plugin-ruby": "^5.1.1"
},
"dependencies": {
"@inertiajs/react": "^2.0.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.3",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.4",
"@rails/actiontext": "^8.0.0",
"@rails/activestorage": "^8.0.0",
"@tabler/icons-react": "^3.26.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-table": "^8.20.6",
"ahooks": "^3.8.1",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"emblor": "^1.4.7",
"framer-motion": "^11.17.0",
"lucide-react": "^0.468.0",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-trix-rte": "^1.0.16",
"recharts": "^2.14.1",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"trix": "^2.1.8",
"vaul": "^1.1.1",
"zod": "^3.24.1"
},
"ts-standard": {
"ignore": [
"app/frontend/components/ui",
"vite-env.d.ts"
]
}
}