-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "microrimba-site",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "npm run build:data && node scripts/copy-public-assets.mjs && node scripts/check-font-assets.mjs",
"build": "vite build",
"preview": "vite preview",
"build:data": "tsx scripts/build-data.ts",
"test": "vitest run"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^12.23.24",
"lucide-react": "^0.554.0",
"papaparse": "^5.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.1",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^24.7.2",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.1.10",
"vitest": "^3.2.4"
}
}