forked from kakao-tech-campus-3rd-step3/Team21_FE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.5 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.5 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
108
109
{
"name": "uniscope",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:sb && npm run copy:sb && tsc -b && vite build",
"build:sb": "cross-env SB_BASE=/storybook/ storybook build -o storybook-static",
"copy:sb": "rm -rf public/storybook && mkdir -p public/storybook && cp -a storybook-static/. public/storybook/",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "^5.87.1",
"@tanstack/react-query-devtools": "^5.87.3",
"axios": "^1.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.544.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.0.0",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.62.0",
"react-icons": "^5.5.0",
"react-is": "^19.2.0",
"react-router-dom": "^7.8.2",
"recharts": "^3.2.1",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.8"
},
"overrides": {
"react-helmet-async": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,css}": "prettier --write"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@playwright/test": "^1.55.1",
"@storybook/addon-a11y": "^9.1.8",
"@storybook/addon-docs": "^9.1.8",
"@storybook/addon-onboarding": "^9.1.8",
"@storybook/addon-vitest": "^9.1.8",
"@storybook/react-vite": "^9.1.8",
"@storybook/testing-library": "^0.2.1",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^9.1.8",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"playwright": "^1.55.1",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react-markdown": "^9.1.0",
"remark-gfm": "^4.0.1",
"storybook": "^9.1.8",
"tailwindcss": "^4.1.12",
"tw-animate-css": "^1.3.7",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}