-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) ยท 2.75 KB
/
package.json
File metadata and controls
94 lines (94 loc) ยท 2.75 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "kkiri",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"lint:fix": "eslint --fix --cache \"src/**/*.{ts,tsx}\"",
"formatter": "prettier --write --cache \"src/**/*.{ts,tsx}\"",
"install": "husky install"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"npm run lint-fix",
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.8",
"@mui/material": "^5.14.7",
"@mui/styled-engine-sc": "^5.14.7",
"@react-oauth/google": "^0.11.1",
"@tanstack/react-query": "^4.33.0",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-cropper": "^1.3.2",
"@types/react-mentions": "^4.1.8",
"@types/react-router-dom": "^5.3.3",
"aos": "^2.3.4",
"axios": "^1.5.1",
"browser-image-compression": "^2.0.2",
"chromatic": "^6.24.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.9",
"esbuild": "^0.19.2",
"framer-motion": "^10.16.2",
"msw": "^1.3.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-cropper": "^2.3.3",
"react-datepicker": "^4.16.0",
"react-hot-toast": "^2.4.1",
"react-kakao-maps-sdk": "^1.1.20",
"react-mentions": "^4.4.10",
"react-router-dom": "^6.15.0",
"react-textarea-autosize": "^8.5.3",
"styled-components": "^5.3.1",
"styled-components.macro": "^1.0.0",
"swiper": "^10.2.0",
"uuid": "^9.0.1",
"zustand": "^4.4.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/aos": "^3.0.5",
"@types/react": "^18.2.21",
"@types/react-datepicker": "^4.15.0",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-favicon2": "^1.1.5",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0"
},
"msw": {
"workerDirectory": "public"
}
}