-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "campro",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@lottiefiles/lottie-player": "^2.0.3",
"@reduxjs/toolkit": "^2.0.1",
"@tanstack/react-query": "^5.17.19",
"@tanstack/react-query-devtools": "^5.24.1",
"aws-sdk": "^2.1563.0",
"axios": "^1.6.5",
"bcrypt": "^5.1.1",
"date-fns": "^3.3.1",
"framer-motion": "^11.0.5",
"hangul-js": "^0.2.6",
"mysql2": "^3.9.1",
"react": "^18",
"react-datepicker": "^5.0.0",
"react-dom": "^18",
"react-hook-form": "^7.49.3",
"react-lottie-player": "^1.5.6",
"react-redux": "^9.1.0",
"react-toastify": "^10.0.4",
"redux-persist": "^6.0.0",
"sharp": "^0.33.2",
"swiper": "^11.0.5"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-datepicker": "^4.19.5",
"@types/react-dom": "^18",
"@types/redux-persist": "^4.3.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"kakao.maps.d.ts": "^0.1.39",
"lint-staged": "^15.2.0",
"next": "^14.1.0",
"postcss": "^8",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"storybook": "^7.6.10",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}