-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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": "smart-energy-tracker",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "node server/mock-socket-server.js",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.14",
"bcryptjs": "^3.0.3",
"chart.js": "^4.5.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-async-handler": "^1.2.0",
"framer-motion": "^12.23.22",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.544.0",
"mongoose": "^8.19.3",
"react": "^19.1.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.1",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.9.3",
"react-toastify": "^11.0.5",
"recharts": "^3.2.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwindcss": "^4.1.14"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@eslint/js": "^9.36.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"husky": "^9.0.11",
"vite": "^7.1.7"
}
}