-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "webdevhome.github.io",
"version": "2.8.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "npm test && vite build",
"preview": "vite preview",
"test": "tsc && eslint src",
"format": "prettier . --write"
},
"dependencies": {
"@headlessui/react": "^2.1.10",
"classnames": "^2.3.1",
"lucide-react": "^0.575.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^8.1.3",
"redux": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.20",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.2",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^7.0.1",
"fuzzysort": "^3.0.2",
"globals": "^16.5.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"react-svg": "^16.1.15",
"tailwindcss": "^3.4.19",
"typescript": "^5.1.3",
"typescript-eslint": "^8.8.1",
"vite": "^7.2.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}