-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.53 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.53 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
{
"name": "nomadia",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"lighthouse": "lhci autorun",
"lighthouse:collect": "lhci collect",
"lighthouse:assert": "lhci assert",
"lighthouse:upload": "lhci upload",
"lighthouse:ci": "pnpm lighthouse",
"lighthouse:open": "open .lighthouseci/lhr-*.html",
"lighthouse:results": "echo 'Lighthouse 결과 파일:' && ls -la .lighthouseci/",
"lighthouse:html": "lhci autorun --output=html --output-path=./lighthouse-reports",
"lighthouse:open-html": "open lighthouse-reports/*.html"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0 --fix",
"prettier --write"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "^5.82.0",
"axios": "1.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"framer-motion": "^12.23.9",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"react": "^19.0.0",
"react-daum-postcode": "^3.2.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.60.0",
"react-kakao-maps-sdk": "^1.2.0",
"sonner": "^2.0.6",
"swiper": "^11.2.10",
"tailwind-merge": "^3.3.1",
"zod": "^4.0.5",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@lhci/cli": "^0.15.1",
"@next/eslint-plugin-next": "^15.3.5",
"@tailwindcss/postcss": "^4",
"@types/date-fns": "^2.6.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"kakao.maps.d.ts": "^0.1.40",
"lint-staged": "^16.1.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
}
}