forked from RiceDecider/RiceDecider-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.98 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
{
"name": "ricedecider",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@emotion/styled": "^11.11.0",
"@tanstack/react-query": "^5.8.3",
"@tanstack/react-query-devtools": "^5.8.3",
"@tanstack/react-query-next-experimental": "^5.8.4",
"@types/react-slick": "^0.23.12",
"axios": "^1.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cookies-next": "^4.1.0",
"crypto-js": "^4.2.0",
"geolib": "^3.3.4",
"lucide-react": "^0.363.0",
"next": "^14.0.1",
"next-auth": "^4.24.4",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.11.0",
"react-slick": "^0.29.0",
"react-spinners": "^0.13.8",
"sharp": "^0.33.1",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zustand": "^4.4.6"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/crypto-js": "^4.2.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}, !(app/**/*.{ts,tsx}, pages/**/*.{ts,tsx})": [
"prettier --cache --write",
"eslint --cache --fix"
]
},
"proxy": [
"https://openapi.naver.com",
"https://naveropenapi.apigw.ntruss.com",
"https://dapi.kakao.com"
]
}