-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 960 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 960 Bytes
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
{
"name": "nakiri-electricity-monitor",
"version": "2.1.0",
"description": "Nakiri Electricity - Modern React Rebuild",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "node server.js",
"scraper": "node -e 'import(\"./scraper.js\").then(m => m.runScraper())'"
},
"dependencies": {
"axios": "^1.7.2",
"express": "^4.19.2",
"node-cron": "^3.0.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.0.28",
"lucide-react": "^0.378.0",
"postcss": "^8.4.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.12.7",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"vite": "^5.2.0"
}
}