-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.23 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.23 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
{
"name": "memoir",
"private": true,
"version": "1.0.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@fullcalendar/core": "^6.1.17",
"@fullcalendar/daygrid": "^6.1.17",
"@fullcalendar/interaction": "^6.1.17",
"@fullcalendar/react": "^6.1.17",
"@heroicons/react": "^2.2.0",
"@tailwindcss/vite": "^4.1.7",
"@tanstack/react-query": "^5.81.2",
"axios": "^1.10.0",
"chart.js": "^4.5.0",
"clsx": "^2.1.1",
"clx": "^1.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"motion": "^12.16.0",
"path": "^0.12.7",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.5.2",
"react-router-dom": "^7.6.2",
"react-spinners": "^0.17.0",
"tailwindcss": "^4.1.7",
"vite-plugin-static-copy": "^3.0.0",
"zustand": "^5.0.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.0",
"@eslint/js": "^9.28.0",
"@storybook/addon-docs": "^9.0.6",
"@storybook/addon-onboarding": "^9.0.6",
"@storybook/addon-vitest": "^9.0.6",
"@storybook/react-vite": "^9.0.6",
"@types/chrome": "^0.1.0",
"@types/node": "^22.15.21",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/browser": "^3.1.4",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^9.0.6",
"globals": "^16.2.0",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"storybook": "^9.0.6",
"typescript": "~5.8.3",
"typescript-eslint": "^8.33.1",
"vite": "^6.3.5",
"vitest": "^3.1.4"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"overrides": {
"storybook": "$storybook"
}
}