facilmap/server/package.json

105 wiersze
3.1 KiB
JSON

{
"name": "facilmap-server",
"version": "3.4.0",
"description": "A fully-featured OpenStreetMap-based map where markers and lines can be added with live collaboration.",
"keywords": [
"webpack",
"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",
"tsconfig.json"
],
"scripts": {
"start": "npm run deps && npm run server",
"deps": "npm install",
"build": "tsc && chmod +x dist/server.js && cpy --cwd=src --parents '**/*' '!**/*.ts' ../dist/",
"clean": "rimraf dist",
"server": "dist/server.js dotenv_config_path=../config.env",
"ts-server": "ts-node --transpile-only src/server.ts dotenv_config_path=../config.env",
"dev-server": "FM_DEV=true ts-node --transpile-only src/server.ts dotenv_config_path=../config.env",
"test": "jest",
"types": "tsc --noEmit src/**/*.ts",
"lint": "eslint src/**/*.ts"
},
"bin": "./dist/server.js",
"dependencies": {
"@mapbox/polyline": "^1.1.1",
"async": "^3.2.0",
"cheerio": "^1.0.0-rc.5",
"compression": "^1.7.3",
"compressjs": "^1.0.3",
"dotenv": "^10.0.0",
"ejs": "^3.1.5",
"event-stream": "^4.0.1",
"express": "^4.16.4",
"express-domain-middleware": "^0.1.0",
"facilmap-frontend": "3.4.0",
"facilmap-leaflet": "3.4.0",
"facilmap-types": "3.4.0",
"facilmap-utils": "3.4.0",
"highland": "^2.13.0",
"json-format": "^1.0.1",
"leaflet": "^1.7.1",
"lodash": "^4.17.20",
"maxmind": "^4.3.1",
"md5-file": "^5.0.0",
"mysql2": "^2.2.5",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"p-throttle": "^4.1.1",
"promisify-node": "^0.5.0",
"sequelize": "^6.3.5",
"socket.io": "^4.1.2",
"stream-array": "^1.1.2",
"stream-combiner": "^0.2.2",
"string-similarity": "^4.0.3",
"strip-bom-buf": "^2.0.0",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@types/async": "^3.2.5",
"@types/cheerio": "^0.22.29",
"@types/compression": "^1.7.0",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.0.5",
"@types/event-stream": "^3.3.34",
"@types/express": "^4.17.9",
"@types/express-domain-middleware": "^0.0.6",
"@types/geojson": "^7946.0.7",
"@types/highland": "^2.12.10",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.170",
"@types/mapbox__polyline": "^1.0.2",
"@types/node-cron": "^2.0.3",
"@types/socket.io": "^3.0.2",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"cpy-cli": "^3.1.1",
"debug": "^4.3.1",
"jest": "^26.6.3",
"pg": "^8.11.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-dev-middleware": "^6.1.1",
"webpack-hot-middleware": "^2.25.4"
}
}