-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "acme-widgets",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"bun": ">=1.2"
},
"scripts": {
"dev": "bun --bun vite",
"build": "bun --bun tsc -b && bun --bun vite build",
"postbuild": "cp -f dist/index.html dist/404.html",
"preview": "bun --bun vite preview",
"typecheck": "bun --bun tsc --noEmit",
"test": "bun --bun vitest run",
"test:watch": "bun --bun vitest --watch",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"papaparse": "^5.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.14.2"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^29.1.0",
"tailwindcss": "^4.2.4",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^4.1.5"
}
}