-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 914 Bytes
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
{
"name": "data-differences-tool",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest",
"deploy": "npm run build && npx wrangler pages deploy dist"
},
"dependencies": {
"@fontsource-variable/playfair-display": "^5.2.8",
"@fontsource-variable/source-sans-3": "^5.2.9",
"dayjs": "^1.11.20",
"exceljs": "^4.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^15.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"@types/node": "^25.8.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.4.0",
"tailwindcss": "^4.1.0",
"typescript": "~5.7.0",
"vite": "^6.3.0",
"vitest": "^3.1.0"
}
}