-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
{
"name": "team-3seco-kiwing-fe",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"postinstall": "husky install",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --cache",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@sentry/react": "^7.100.0",
"@sentry/tracing": "^7.100.0",
"@tanstack/react-query": "^5.18.1",
"axios": "^1.6.7",
"framer-motion": "^11.0.3",
"lodash": "^4.17.21",
"qs": "^6.12.3",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.0",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.4",
"react-tooltip": "^5.26.3",
"styled-components": "^6.1.8",
"styled-normalize": "^8.1.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.16",
"@types/qs": "^6.9.15",
"@types/react": "^18.2.43",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.2.17",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"terser": "^5.31.6",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-compression2": "^1.2.0"
}
}