kopia lustrzana https://github.com/FacilMap/facilmap
106 wiersze
3.1 KiB
JSON
106 wiersze
3.1 KiB
JSON
{
|
|
"name": "facilmap-server",
|
|
"version": "3.2.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": {
|
|
"facilmap-server": "./dist/server.js"
|
|
},
|
|
"dependencies": {
|
|
"@mapbox/polyline": "^1.1.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.15.2",
|
|
"@typescript-eslint/parser": "^4.15.2",
|
|
"async": "^3.2.0",
|
|
"cheerio": "^1.0.0-rc.5",
|
|
"compression": "^1.7.3",
|
|
"compressjs": "^1.0.3",
|
|
"dotenv": "^9.0.0",
|
|
"ejs": "^3.1.5",
|
|
"event-stream": "^4.0.1",
|
|
"express": "^4.16.4",
|
|
"express-domain-middleware": "^0.1.0",
|
|
"facilmap-frontend": "3.2.0",
|
|
"facilmap-leaflet": "3.2.0",
|
|
"facilmap-types": "3.2.0",
|
|
"facilmap-utils": "3.2.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.0.0",
|
|
"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.28",
|
|
"@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.165",
|
|
"@types/mapbox__polyline": "^1.0.2",
|
|
"@types/node-cron": "^2.0.3",
|
|
"@types/socket.io": "^2.1.12",
|
|
"@types/string-similarity": "^4.0.0",
|
|
"cpy-cli": "^3.1.1",
|
|
"debug": "^4.3.1",
|
|
"jest": "^26.6.3",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.4.4",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.1.3",
|
|
"webpack": "^5.28.0",
|
|
"webpack-dev-middleware": "^4.1.0",
|
|
"webpack-hot-middleware": "^2.25.0"
|
|
}
|
|
}
|