facilmap/server/package.json

75 wiersze
2.0 KiB
JSON
Czysty Zwykły widok Historia

{
"name": "facilmap-server",
2018-01-28 01:12:45 +00:00
"version": "2.7.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/facilmap2",
"bugs": {
"url": "https://github.com/FacilMap/facilmap2/issues"
},
"license": "AGPL-3.0",
"author": "Candid Dauth <cdauth@cdauth.eu>",
"repository": {
"type": "git",
"url": "https://github.com/FacilMap/facilmap2.git"
},
"scripts": {
"start": "npm run deps && npm run server",
2020-03-14 00:01:11 +00:00
"deps": "npm install",
2020-04-14 23:40:00 +00:00
"server": "ts-node src/server.ts"
},
"bin": {
2020-04-14 23:40:00 +00:00
"facilmap-server": "src/server.ts"
},
"dependencies": {
2018-09-26 22:15:02 +00:00
"@mapbox/polyline": "^1.0.0",
2018-01-31 19:46:25 +00:00
"cheerio": "^1.0.0-rc.2",
2018-09-26 22:15:02 +00:00
"compression": "^1.7.3",
"compressjs": "^1.0.3",
2020-04-15 00:44:54 +00:00
"ejs": "^3.0.2",
2018-12-26 04:26:54 +00:00
"event-stream": "^4.0.1",
"express": "^4.16.4",
2018-01-28 01:12:45 +00:00
"facilmap-frontend": "^2.7.0",
2020-04-14 23:40:00 +00:00
"facilmap-types": "^2.7.0",
2018-09-26 22:15:02 +00:00
"highland": "^2.13.0",
2018-01-31 19:46:25 +00:00
"json-format": "^1.0.1",
2020-03-14 00:01:11 +00:00
"maxmind": "^4.1.1",
2020-04-15 00:44:54 +00:00
"md5-file": "^5.0.0",
2020-03-14 00:01:11 +00:00
"mysql2": "^2.1.0",
2018-12-26 04:26:54 +00:00
"node-cron": "^2.0.3",
"promisify-node": "^0.5.0",
2020-03-14 00:01:11 +00:00
"request": "^2.88.2",
"request-debug": "^0.2.0",
2018-01-31 19:46:25 +00:00
"request-promise": "^4.2.2",
2020-04-15 00:44:54 +00:00
"sequelize": "^5.21.6",
2018-12-26 04:26:54 +00:00
"socket.io": "^2.2.0",
2020-04-14 23:40:00 +00:00
"stream-array": "^1.1.2",
"stream-combiner": "^0.2.2",
2020-03-14 00:01:11 +00:00
"string-similarity": "^4.0.1",
2020-04-15 00:44:54 +00:00
"underscore": "^1.10.2",
2020-03-14 00:01:11 +00:00
"unzipper": "^0.10.10"
},
"devDependencies": {
2020-04-14 23:40:00 +00:00
"@types/compression": "^1.7.0",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.0.1",
"@types/event-stream": "^3.3.34",
"@types/express": "^4.17.3",
"@types/highland": "^2.12.9",
"@types/mapbox__polyline": "^1.0.0",
"@types/request": "^2.48.4",
"@types/request-debug": "^0.2.0",
"@types/request-promise": "^4.1.45",
"@types/underscore": "^1.9.4",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
2020-04-15 00:44:54 +00:00
"webpack": "^4.42.1",
2018-09-26 22:15:02 +00:00
"webpack-dev-middleware": "^3.4.0",
2018-12-26 04:26:54 +00:00
"webpack-hot-middleware": "^2.24.3"
}
}