-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 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
{
"name": "task-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"framer-motion": "^12.23.9",
"postcss": "^8.5.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.5",
"web-vitals": "^5.1.0"
},
"overrides": {
"@svgr/webpack": "^8.0.1",
"@adobe/css-tools": "^4.3.1"
},
"scripts": {
"start": "BROWSER=none WDS_SOCKET_PORT=0 vite --port 3000",
"start:hydrated": "VITE_ENABLE_DATA_HYDRATION=true BROWSER=none WDS_SOCKET_PORT=0 vite --port 3000",
"build": "vite build",
"build:hydrated": "VITE_ENABLE_DATA_HYDRATION=true vite build",
"build:clean": "VITE_ENABLE_DATA_HYDRATION=false vite build",
"preview": "vite preview",
"preview:hydrated": "VITE_ENABLE_DATA_HYDRATION=true vite preview",
"test": "vitest run",
"build:css": "tailwindcss build src/index.css -o src/output.css",
"watch:css": "tailwindcss -i src/index.css -o src/output.css --watch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.3",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^26.1.0",
"msw": "^2.12.9",
"vite": "^7.3.1",
"vitest": "^3.2.4"
}
}