-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.35 KB
/
package.json
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
{
"name": "tm-shutdowns",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "concurrently npm:start-python npm:dev",
"start-python": "cd server && poetry run chalice local --port=5000",
"dev": "vite",
"build": "tsc && vite build",
"lint-frontend": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 10",
"lint-backend": "cd server && poetry run flake8 && poetry run black . --check",
"lint": "concurrently npm:lint-frontend npm:lint-backend",
"postinstall": "cd server && poetry install",
"preview": "vite preview"
},
"engines": {
"node": ">=20.13.0",
"npm": ">=10.2.0"
},
"proxy": "http://localhost:5000",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@headlessui/react": "2.1.0",
"@heroicons/react": "^2.1.5",
"@tanstack/react-query": "^5.54.1",
"@tanstack/react-router": "^1.53.0",
"bezier-js": "^6.1.4",
"chart.js": "^4.4.4",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-annotation": "^3.0.1",
"chartjs-plugin-watermark": "^2.0.2",
"classnames": "^2.5.1",
"concurrently": "^8.2.2",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-responsive": "^10.0.0",
"react-scroll": "^1.9.0",
"react-toggle-dark-mode": "^1.1.1",
"usehooks-ts": "^3.1.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@tanstack/router-vite-plugin": "^1.52.0",
"@types/bezier-js": "^4.1.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"postcss": "^8.4.44",
"prettier": "~3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "~5.5.4",
"vite": "^5.4.3"
}
}