facilmap/server/package.json

101 wiersze
2.9 KiB
JSON

{
"name": "facilmap-server",
"version": "5.0.0-alpha",
"type": "module",
"description": "A fully-featured OpenStreetMap-based map where markers and lines can be added with live collaboration.",
"keywords": [
"maps",
"osm"
],
"homepage": "https://github.com/FacilMap/facilmap",
"bugs": {
"url": "https://github.com/FacilMap/facilmap/issues"
},
"license": "AGPL-3.0",
"author": "Candid Dauth <cdauth@cdauth.eu>",
"repository": {
"type": "git",
"url": "https://github.com/FacilMap/facilmap.git"
},
"files": [
"dist",
"src",
"README.md",
"bin"
],
"scripts": {
"build": "vite build",
"clean": "rimraf dist out",
"prod-server": "DOTENV_CONFIG_PATH=../config.env node ./bin/facilmap-server.js",
"server": "DOTENV_CONFIG_PATH=../config.env NODE_OPTIONS='--import tsx' vite-node ./server.ts",
"dev-server": "FM_DEV=true DOTENV_CONFIG_PATH=../config.env NODE_OPTIONS='--import tsx' vite-node ./server.ts",
"test": "vitest run",
"test-watch": "vitest",
"check-types": "tsc -b --emitDeclarationOnly",
"lint": "eslint src/**/*.ts"
},
"main": "./dist/facilmap-server.mjs",
"types": "./dist/facilmap-server.d.ts",
"directories": {
"bin": "./bin"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"compression": "^1.7.4",
"compressjs": "^1.0.3",
"cookie": "^0.6.0",
"cookie-parser": "^1.4.6",
"csv-stringify": "^6.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "5.0.0-beta.3",
"express-domain-middleware": "^0.1.0",
"facilmap-frontend": "workspace:^",
"facilmap-leaflet": "workspace:^",
"facilmap-types": "workspace:^",
"facilmap-utils": "workspace:^",
"find-cache-dir": "^5.0.0",
"i18next": "^23.11.1",
"i18next-http-middleware": "^3.5.0",
"lodash-es": "^4.17.21",
"maxmind": "^4.3.18",
"md5-file": "^5.0.0",
"mysql2": "^3.9.4",
"p-throttle": "^6.1.0",
"pg": "^8.11.5",
"proxy-addr": "^2.0.7",
"sequelize": "^6.37.2",
"serialize-error": "^11.0.3",
"socket.io": "^4.7.5",
"string-similarity": "^4.0.4",
"strip-bom-buf": "^4.0.0",
"unzipper": "^0.10.14",
"zip-stream": "^6.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cookie": "^0.6.0",
"@types/cookie-parser": "^1.4.7",
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/express-domain-middleware": "^0.0.9",
"@types/geojson": "^7946.0.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.6",
"@types/proxy-addr": "^2.0.3",
"@types/string-similarity": "^4.0.2",
"cpy-cli": "^5.0.0",
"debug": "^4.3.4",
"rimraf": "^5.0.5",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-node": "^1.4.0",
"vite-plugin-dts": "^3.8.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
}
}