-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "dojo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build": "tsc && vite build",
"lint": "tsc --noEmit && eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"setup": "npm install --include=dev",
"format": "prettier --write ./**/**/*.{tsx,css,ts,md} --config ./.prettierrc"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.7",
"@mui/lab": "^7.0.1-beta.21",
"@mui/material": "^7.3.7",
"@mui/x-charts": "^7.6.1",
"@mui/x-date-pickers": "^7.6.1",
"@react-oauth/google": "^0.12.1",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-query-devtools": "^5.91.3",
"axios": "^1.6.7",
"dayjs": "^1.11.11",
"prettier": "^3.3.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.0.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.22.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@types/node": "^20.19.9",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4"
},
"overrides": {}
}