-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "finding-nyo",
"module": "server.ts",
"type": "module",
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/cli": "^4.2.1",
"@types/bun": "1.3.10",
"@types/leaflet": "^1.9.21",
"@types/leaflet.markercluster": "^1.5.6",
"eslint": "^10.0.3",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"tailwindcss": "^4.2.1",
"typescript-eslint": "^8.57.1",
"vue-tsc": "^3.2.5"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"scripts": {
"dev": "bun --hot server.ts",
"build": "bun run build-frontend.ts",
"start": "bun run build && bun server.ts",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint .",
"ingest": "bun scripts/ingest-all.ts"
},
"dependencies": {
"@bogeychan/elysia-logger": "^0.1.10",
"@eckidevs/bun-plugin-vue": "^0.3.0",
"@elysiajs/eden": "^1.4.8",
"@elysiajs/static": "^1.4.7",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"elysia": "^1.4.28",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"vue": "^3.5.30"
},
"engines": {
"bun": "1.3.10"
}
}