-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.45 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.45 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
{
"name": "tm-shutdowns",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"start": "concurrently npm:start-python npm:dev",
"start-python": "cd server && uv run chalice local --port=5555",
"dev": "vite",
"build": "tsc && vite build",
"lint-frontend": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 10 && uv run python sort-shutdowns.py --check",
"lint-backend": "cd server && uv run ruff check .",
"lint": "concurrently npm:lint-frontend npm:lint-backend",
"sort-shutdowns": "uv run python sort-shutdowns.py",
"postinstall": "cd server && uv sync",
"preview": "vite preview"
},
"engines": {
"node": ">=22.2.0",
"npm": ">=10.5.0"
},
"proxy": "http://localhost:5555",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@headlessui/react": "2.2.4",
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-router": "^1.132.47",
"bezier-js": "^6.1.4",
"chart.js": "^4.4.9",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-annotation": "^3.1.0",
"chartjs-plugin-watermark": "^2.0.2",
"classnames": "^2.5.1",
"concurrently": "^9.1.2",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-responsive": "^10.0.1",
"react-scroll": "^1.9.3",
"react-toggle-dark-mode": "^1.1.1",
"usehooks-ts": "^3.1.1",
"zustand": "^5.0.6"
},
"devDependencies": {
"@tanstack/router-vite-plugin": "^1.132.51",
"@types/bezier-js": "^4.1.3",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"postcss": "^8.5.3",
"prettier": "~3.6.2",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"vite": "^6.3.5"
},
"volta": {
"node": "22.15.0"
}
}