facilmap/server/package.json

96 wiersze
2.7 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",
2021-01-23 11:38:26 +00:00
"server": "ts-node --transpile-only src/server.ts",
2020-12-24 17:51:21 +00:00
"test": "jest",
"check-types": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"preinstall": "lerna link",
"postinstall": "lerna link"
},
"bin": {
2020-04-14 23:40:00 +00:00
"facilmap-server": "src/server.ts"
},
"dependencies": {
2020-12-24 04:57:46 +00:00
"@mapbox/polyline": "^1.1.1",
"async": "^3.2.0",
"cheerio": "^1.0.0-rc.5",
2018-09-26 22:15:02 +00:00
"compression": "^1.7.3",
"compressjs": "^1.0.3",
"dotenv": "^8.2.0",
2020-12-24 04:57:46 +00:00
"ejs": "^3.1.5",
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",
2021-01-31 07:59:12 +00:00
"facilmap-leaflet": "^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-12-24 04:57:46 +00:00
"lodash": "^4.17.20",
"maxmind": "^4.3.1",
2020-04-15 00:44:54 +00:00
"md5-file": "^5.0.0",
2020-12-24 04:57:46 +00:00
"mysql2": "^2.2.5",
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",
2020-12-24 04:57:46 +00:00
"request-promise": "^4.2.6",
"sequelize": "^6.3.5",
"socket.io": "^3.0.4",
2020-04-14 23:40:00 +00:00
"stream-array": "^1.1.2",
"stream-combiner": "^0.2.2",
2020-12-24 04:57:46 +00:00
"string-similarity": "^4.0.3",
"unzipper": "^0.10.11"
},
"devDependencies": {
2020-12-24 04:57:46 +00:00
"@types/async": "^3.2.5",
"@types/cheerio": "^0.22.23",
2020-04-14 23:40:00 +00:00
"@types/compression": "^1.7.0",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
2020-12-24 04:57:46 +00:00
"@types/ejs": "^3.0.5",
2020-04-14 23:40:00 +00:00
"@types/event-stream": "^3.3.34",
2020-12-24 04:57:46 +00:00
"@types/express": "^4.17.9",
"@types/geojson": "^7946.0.7",
"@types/highland": "^2.12.10",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.165",
"@types/mapbox__polyline": "^1.0.2",
"@types/node-cron": "^2.0.3",
"@types/request": "^2.48.5",
2020-04-14 23:40:00 +00:00
"@types/request-debug": "^0.2.0",
2020-12-24 04:57:46 +00:00
"@types/request-promise": "^4.1.47",
"@types/socket.io": "^2.1.12",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"facilmap-types": "^2.7.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-dev-middleware": "^4.0.2",
2018-12-26 04:26:54 +00:00
"webpack-hot-middleware": "^2.24.3"
}
}