This repository was archived by the owner on Aug 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.02 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.02 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
110
111
112
113
114
115
116
117
118
119
{
"name": "product-web",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build && vite build --ssr src/app/prerender-root.tsx --outDir .prerender/server && node scripts/prerender-root.mjs",
"preview": "node scripts/preview-prerendered.mjs",
"test": "pnpm test:unit",
"test:unit": "vitest run --project unit",
"test:browser": "vitest run --project storybook-browser",
"test:ci": "pnpm test:unit",
"quality:check": "pnpm typecheck && pnpm lint && pnpm test:ci",
"analyze": "vite build --mode analyze",
"lint": "eslint src .storybook eslint.config.js vite.config.ts vitest.config.ts --max-warnings=0",
"lint:fix": "eslint src .storybook eslint.config.js vite.config.ts vitest.config.ts --fix --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "pnpm dlx chromatic --exit-once-uploaded"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/pretendard": "^5.2.5",
"@fullcalendar/daygrid": "^6.1.6",
"@fullcalendar/interaction": "^6.1.6",
"@fullcalendar/react": "^6.1.6",
"@hookform/resolvers": "^5.2.2",
"@lukemorales/query-key-factory": "^1.3.4",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@tanstack/react-devtools": "^0.9.5",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router": "^1.159.10",
"@tanstack/react-router-devtools": "^1.159.10",
"@tanstack/router-plugin": "^1.159.12",
"axios": "^1.13.5",
"dayjs": "^1.11.19",
"lucide-react": "^0.545.0",
"react": "^19.2.0",
"react-calendar": "^6.0.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.69.0",
"react-markdown": "9.0.3",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"vite-plugin-svgr": "^4.5.0",
"zod": "^4.3.4",
"zustand": "^5.0.9"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@emotion/babel-plugin": "^11.13.5",
"@tanstack/devtools-vite": "^0.5.1",
"@tanstack/eslint-config": "^0.3.4",
"@tanstack/router-cli": "^1.159.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"is-wsl": "^3.1.0",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.7",
"openapi-typescript": "^7.10.1",
"prettier": "^3.5.3",
"rollup-plugin-visualizer": "^6.0.5",
"ts-prune": "^0.10.3",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vitest": "^3.0.5",
"web-vitals": "^5.1.0",
"storybook": "^10.2.10",
"@storybook/react-vite": "^10.2.10",
"@chromatic-com/storybook": "^5.0.1",
"@storybook/addon-vitest": "^10.2.10",
"@storybook/addon-a11y": "^10.2.10",
"@storybook/addon-docs": "^10.2.10",
"@storybook/addon-onboarding": "^10.2.10",
"eslint-plugin-storybook": "^10.2.10",
"playwright": "^1.58.2",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4"
},
"pnpm": {
"overrides": {
"rollup": "^4.59.0",
"minimatch@3": "^3.1.3",
"minimatch@5": "^5.1.7",
"minimatch@9": "^9.0.7",
"minimatch@10": "^10.2.4",
"ajv@6": "^6.14.0",
"ajv@8": "^8.18.0",
"seroval": "^1.5.0",
"seroval-plugins": "^1.5.0"
}
}
}