-
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.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 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": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "husky install"
},
"lint-staged": {
"./src/**/*.{js,ts,jsx,tsx}": [
"eslint",
"prettier --write --cache ."
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@react-oauth/google": "^0.11.1",
"@toast-ui/react-editor": "^3.2.3",
"@types/draft-js": "^0.11.15",
"@types/react-draft-wysiwyg": "^1.13.7",
"axios": "^1.4.0",
"date-fns": "^2.30.0",
"dompurify": "^3.0.6",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"react": "^18.2.0",
"react-datepicker": "^4.21.0",
"react-dom": "^18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-kakao-login": "^2.1.1",
"react-quill": "^2.0.0",
"react-router-dom": "^6.14.2",
"react-select": "^5.7.7",
"recoil": "^0.7.7",
"yarn": "^1.22.19"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@types/dompurify": "^3.0.5",
"@types/draftjs-to-html": "^0.8.4",
"@types/react": "^18.2.15",
"@types/react-datepicker": "^4.19.1",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"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-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0"
}
}