-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.07 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.07 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"start": "npm run build & npm run preview",
"test": "echo \"No tests specified yet\" && exit 0",
"test:watch": "echo \"No tests specified yet\" && exit 0",
"test:coverage": "echo \"No tests specified yet\" && exit 0",
"security:audit": "npm audit --audit-level=moderate",
"docker:build": "docker build -t frontend-app .",
"docker:run": "docker run -d --name frontend-app -p 3000:80 frontend-app",
"docker:stop": "docker stop frontend-app && docker rm frontend-app",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,css,md}\"",
"analyze": "npm run build && npx vite-bundle-analyzer dist/assets/*.js"
},
"dependencies": {
"@heroui/react": "^2.7.11",
"@hookform/resolvers": "^5.1.1",
"@reduxjs/toolkit": "^2.8.2",
"@types/node": "^24.0.4",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"@types/yup": "^0.29.14",
"axios": "^1.10.0",
"dotenv": "^17.0.0",
"formik": "^2.4.6",
"framer-motion": "^12.19.1",
"lucide-react": "^0.525.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.6.2",
"recharts": "^3.0.2",
"redux": "^5.0.1",
"yup": "^1.6.1",
"zod": "^3.25.73"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"postcss": "^8.5.6",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-bundle-analyzer": "^0.7.0"
}
}