-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.48 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
{
"name": "task-manager-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"type-check": "tsc --noEmit -p tsconfig.app.json",
"dev": "vite",
"build": "npm run type-check && tsc -b && vite build",
"lint": "eslint .",
"deploy": "npm run build && \\\naws s3 sync dist/ s3://task-manager-frontend.example.com --delete \\\n --cache-control public,max-age=31536000,immutable \\\n --exclude index.html && \\\naws s3 cp dist/index.html s3://task-manager-frontend.example.com/ \\\n --cache-control no-cache,no-store,max-age=0 && \\\naws cloudfront create-invalidation \\\n --distribution-id E31BJ33VTNLI98 \\\n --paths \"/index.html\""
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@tanstack/react-query": "^5.74.4",
"@toolpad/core": "^0.14.0",
"axios": "^1.8.4",
"jwt-decode": "^4.0.0",
"react": "^19.0.0",
"react-router": "^7.5.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.1.2",
"@types/react-router-dom": "^5.3.3",
"@types/recharts": "^2.0.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1"
}
}