forked from 100-hours-a-week/10-wingterview-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) ยท 1.56 KB
/
package.json
File metadata and controls
66 lines (66 loc) ยท 1.56 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
63
64
65
66
{
"name": "wingterview",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prepare": "husky",
"preview": "vite preview"
},
"dependencies": {
"@tanstack/react-query": "^5.36.0",
"@types/swiper": "^5.4.3",
"axios": "^1.6.7",
"lucide-react": "^0.503.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.50.0",
"react-router-dom": "^7.5.3",
"swiper": "^11.2.6",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tanstack/react-query-devtools": "^5.76.0",
"@types/node": "^22.15.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"msw": "^2.8.2",
"prettier": "^3.5.3",
"sass": "^1.87.0",
"sass-embedded": "^1.88.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.15.0",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}