-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.24 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
{
"name": "27th-web-team-2-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint-staged": "lint-staged --config lint-staged.config.mjs",
"commitlint": "commitlint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "lefthook install || true"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.33.5",
"@amplitude/session-replay-browser": "^1.30.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"korean-holidays": "^1.0.0",
"ky": "^1.14.2",
"next": "16.1.0",
"react": "19.2.3",
"react-datepicker": "^9.1.0",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"vaul": "^1.1.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@storybook/addon-a11y": "^10.1.10",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-onboarding": "^10.1.10",
"@storybook/addon-vitest": "^10.1.10",
"@storybook/nextjs-vite": "^10.1.10",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-datepicker": "^6.2.0",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^10.1.10",
"eslint-plugin-unused-imports": "^4.3.0",
"lefthook": "^2.0.12",
"lint-staged": "^16.2.7",
"msw": "^2.12.7",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.1.10",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"msw": {
"workerDirectory": [
"public"
]
}
}