-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "pumperly",
"version": "1.0.0",
"description": "Open-source energy route planner for fuel and electric vehicles. Self-hostable.",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"scraper:run": "npx tsx src/scrapers/cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeiserX/pumperly.git"
},
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/GeiserX/pumperly/issues"
},
"homepage": "https://github.com/GeiserX/pumperly#readme",
"dependencies": {
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"dotenv": "^17.3.1",
"maplibre-gl": "^5.21.0",
"next": "^16.2.1",
"prisma": "^7.5.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-map-gl": "^8.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.1.0",
"eslint-config-next": "^16.2.1",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"overrides": {
"hono": "^4.12.9",
"@hono/node-server": "^1.19.11",
"lodash": "^4.17.23",
"effect": "^3.21.0",
"brace-expansion": "^5.0.5",
"minimatch": "^10.2.4"
}
}