DMRmap/frontend/package.json
2026-02-19 17:00:59 +01:00

18 lines
637 B
JSON

{
"name": "dmrmap-frontend",
"private": true,
"scripts": {
"build": "esbuild src/main.ts --bundle --outfile=static/app.js --format=iife --target=es2017 --sourcemap",
"build:prod": "esbuild src/main.ts --bundle --outfile=static/app.js --format=iife --target=es2017 --minify",
"watch": "esbuild src/main.ts --bundle --outfile=static/app.js --format=iife --target=es2017 --sourcemap --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/leaflet": "^1.9.0",
"esbuild": "^0.24.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}