-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"name": "vite-template",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n fe,be -c blue,green \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npx vite",
"dev:backend": "npm run dev --prefix Backend",
"build": "npx vite build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"preview": "npx vite preview"
},
"dependencies": {
"@tanstack/react-query": "^5.62.0",
"@tanstack/react-query-devtools": "^5.62.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"docx-preview": "^0.3.7",
"dotenv": "^17.2.3",
"intersection-observer": "^0.12.2",
"jsonwebtoken": "^9.0.3",
"lucide-react": "0.522.0",
"mysql2": "^3.16.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"recharts": "^3.7.0",
"socket.io-client": "^4.8.3",
"web-vitals": "^5.1.0"
},
"devDependencies": {
"@types/node": "^20.11.18",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-legacy": "^5.4.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"concurrently": "^9.1.0",
"eslint": "^8.50.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"postcss": "^8.4.35",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.1",
"terser": "^5.46.0",
"typescript": "^5.5.4",
"vite": "^5.2.0",
"vite-plugin-compression2": "^1.3.0"
}
}