-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jigume-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev-host": "vite --host",
"build": "vite build",
"lint": "eslint ./src --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "eslint ./src --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"prepare": "husky install",
"reinstall": "rm -rf ./package-lock.json ./node_modules && npm i"
},
"dependencies": {
"axios": "^1.5.0",
"boring-avatars": "^1.10.1",
"date-fns": "^2.30.0",
"framer-motion": "^10.16.4",
"javascript-time-ago": "^2.5.9",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"match-sorter": "^6.3.1",
"opengraph-io": "^3.0.1",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-currency-input-field": "^3.6.11",
"react-date-range": "^1.4.0",
"react-daum-postcode": "^3.1.3",
"react-dom": "^18.2.0",
"react-dropdown": "^1.11.0",
"react-image-file-resizer": "^0.4.8",
"react-kakao-maps-sdk": "^1.1.23",
"react-query": "^3.39.3",
"react-router-dom": "^6.15.0",
"reactstrap": "^9.2.0",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"sort-by": "^0.0.2",
"swiper": "10.3.1",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@types/lodash": "^4.14.202",
"@types/navermaps": "^3.7.4",
"@types/node": "^20.10.7",
"@types/qs": "^6.9.11",
"@types/react": "^18.2.47",
"@types/react-date-range": "^1.4.9",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/typescript-estree": "^6.19.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"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",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"kakao.maps.d.ts": "^0.1.39",
"lint-staged": "^15.2.0",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vite-tsconfig-paths": "^4.2.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}