-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "pumperly",
"version": "1.9.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": "eslint .",
"test": "vitest run --project node --project components",
"test:coverage": "vitest run --project node --project components --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"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.8.0",
"@prisma/client": "^7.8.0",
"dotenv": "^17.4.2",
"json5": "^2.2.3",
"maplibre-gl": "^5.24.0",
"next": "^16.2.10",
"prisma": "^7.8.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-map-gl": "^8.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@testcontainers/postgresql": "^12.0.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.28.0",
"eslint-config-next": "^16.2.10",
"jsdom": "^29.1.1",
"pg": "^8.22.0",
"postcss": "^8.5.14",
"tailwindcss": "^4.2.1",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"overrides": {
"hono": "^4.12.26",
"@hono/node-server": "^1.19.13",
"lodash": "^4.17.23",
"effect": "^3.21.0",
"brace-expansion": "^5.0.6",
"minimatch": "^10.2.4",
"fast-uri": "^3.1.2",
"postcss": "^8.5.14",
"esbuild": "^0.28.1",
"js-yaml": "^4.2.0",
"@babel/core": "^7.29.6",
"jsdom": {
"undici": "^7.28.0"
},
"testcontainers": {
"undici": "^8.5.0"
}
}
}