-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.76 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prettier": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@fullcalendar/core": "^6.1.17",
"@fullcalendar/daygrid": "^6.1.17",
"@fullcalendar/interaction": "^6.1.17",
"@fullcalendar/react": "^6.1.17",
"@vanilla-extract/css": "^1.16.0",
"@vanilla-extract/recipes": "^0.5.5",
"@vanilla-extract/sprinkles": "^1.6.3",
"@vanilla-extract/vite-plugin": "^4.0.17",
"axios": "^1.9.0",
"classnames": "^2.5.1",
"eslint-plugin-react-refresh": "^0.4.19",
"framer-motion": "^12.10.5",
"globals": "^15.14.0",
"highlight.js": "^11.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.27.0",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^2.15.3",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"typescript-eslint": "8.24.0",
"vite-tsconfig-paths": "^5.1.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "9.0.0",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.1",
"typescript": "5.4.3",
"vite": "^5.4.8",
"vite-plugin-svgr": "^4.3.0"
},
"packageManager": "yarn@4.5.0",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./prettier.config.js --write -u"
]
}
}