-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 KB
/
package.json
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
{
"name": "vite-boiler",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview --no-open",
"test": "jest",
"postinstall": "husky install"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^5.0.5",
"axios": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.20.0",
"sockjs-client": "^1.6.1",
"styled-components": "^6.0.8",
"zustand": "^4.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-slick": "^0.23.10",
"@types/sockjs-client": "^1.5.4",
"@types/stompjs": "^2.3.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"ts-jest": "^29.1.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-pwa": "^0.16.7",
"vite-plugin-svgr": "^4.2.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --cache --write",
"eslint --cache --fix"
]
}
}