-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.09 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
{
"name": "dev-mtl",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build && cp dist/index.html dist/404.html",
"dev": "vite",
"export-schedule": "node scripts/export-schedule-to-markdown.js",
"format": "prettier . --write",
"format-check": "prettier . --list-different",
"lint": "eslint src --max-warnings=0",
"serve": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^3.34.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@heroicons/react": "^2.2.0",
"@vitejs/plugin-react": "^4.3.4",
"chart.js": "^4.5.1",
"framer-motion": "^12.35.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.6.0",
"react-router-dom": "^7.13.1",
"vite-plugin-svgr": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20.17.11",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-tailwindcss": "^3.18.2",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-curly": "^0.3.2",
"prettier-plugin-packagejson": "^2.5.11",
"prettier-plugin-sh": "^0.17.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"packageManager": "yarn@3.6.3"
}