-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.19 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.19 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "plus82.front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_823f3cf71c57001",
"prepare": "husky"
},
"dependencies": {
"@next/third-parties": "^15.3.4",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-tooltip": "^1.1.7",
"@tanstack/react-query": "^5.51.23",
"@vis.gl/react-google-maps": "^1.5.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.3",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.2",
"jspdf": "^2.5.2",
"lodash-es": "^4.17.21",
"lucide-react": "^0.474.0",
"next": "15.1.11",
"next-auth": "5.0.0-beta.25",
"next-intl": "^4.0.2",
"path-to-regexp": "^8.2.0",
"pdf-lib": "^1.17.1",
"pretendard": "^1.3.9",
"react": "^19",
"react-datepicker": "^7.4.0",
"react-daum-postcode": "^3.2.0",
"react-dom": "^19",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.53.0",
"react-paginate": "^8.3.0",
"react-pdf": "^9.2.1",
"react-popper": "^2.3.0",
"react-toastify": "^10.0.6",
"svg-country-flags": "^1.2.10",
"swiper": "^11.2.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@commitlint/cli": "^19.3.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@feature-sliced/eslint-config": "^0.1.1",
"@hookform/devtools": "^4.3.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/test": "^8.2.9",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.51.23",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"chromatic": "^11.7.1",
"eslint": "^9.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-boundaries": "^4.2.2",
"eslint-plugin-fsd-lint": "^1.0.5",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-storybook": "^0.12.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"msw": "^2.4.3",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.1",
"typescript": "~5.5.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"msw": {
"workerDirectory": [
"public"
]
}
}