2017-02-21 23:55:11 +00:00
|
|
|
{
|
|
|
|
"name": "facilmap-server",
|
2021-05-07 05:27:51 +00:00
|
|
|
"version": "3.2.0",
|
2017-02-21 23:55:11 +00:00
|
|
|
"description": "A fully-featured OpenStreetMap-based map where markers and lines can be added with live collaboration.",
|
|
|
|
"keywords": [
|
|
|
|
"webpack",
|
|
|
|
"maps",
|
|
|
|
"osm"
|
|
|
|
],
|
2021-04-04 13:35:31 +00:00
|
|
|
"homepage": "https://github.com/FacilMap/facilmap",
|
2017-02-21 23:55:11 +00:00
|
|
|
"bugs": {
|
2021-04-04 13:35:31 +00:00
|
|
|
"url": "https://github.com/FacilMap/facilmap/issues"
|
2017-02-21 23:55:11 +00:00
|
|
|
},
|
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"author": "Candid Dauth <cdauth@cdauth.eu>",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-04-04 13:35:31 +00:00
|
|
|
"url": "https://github.com/FacilMap/facilmap.git"
|
2017-02-21 23:55:11 +00:00
|
|
|
},
|
2021-04-10 00:12:28 +00:00
|
|
|
"files": [
|
2021-04-15 21:30:25 +00:00
|
|
|
"dist",
|
2021-04-10 00:12:28 +00:00
|
|
|
"src",
|
|
|
|
"README.md",
|
|
|
|
"tsconfig.json"
|
|
|
|
],
|
2017-02-21 23:55:11 +00:00
|
|
|
"scripts": {
|
|
|
|
"start": "npm run deps && npm run server",
|
2020-03-14 00:01:11 +00:00
|
|
|
"deps": "npm install",
|
2021-05-14 23:20:43 +00:00
|
|
|
"build": "tsc && chmod +x dist/server.js && cpy --cwd=src --parents '**/*' '!**/*.ts' ../dist/",
|
2021-04-15 21:30:25 +00:00
|
|
|
"clean": "rimraf dist",
|
|
|
|
"server": "dist/server.js dotenv_config_path=../config.env",
|
2021-05-14 23:24:09 +00:00
|
|
|
"ts-server": "ts-node --transpile-only src/server.ts dotenv_config_path=../config.env",
|
2021-04-15 21:30:25 +00:00
|
|
|
"dev-server": "FM_DEV=true ts-node --transpile-only src/server.ts dotenv_config_path=../config.env",
|
2020-12-24 17:51:21 +00:00
|
|
|
"test": "jest",
|
2021-02-28 22:17:26 +00:00
|
|
|
"types": "tsc --noEmit src/**/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts"
|
2017-02-21 23:55:11 +00:00
|
|
|
},
|
|
|
|
"bin": {
|
2021-04-15 21:30:25 +00:00
|
|
|
"facilmap-server": "./dist/server.js"
|
2017-02-21 23:55:11 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-12-24 04:57:46 +00:00
|
|
|
"@mapbox/polyline": "^1.1.1",
|
2021-03-25 19:34:48 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.15.2",
|
|
|
|
"@typescript-eslint/parser": "^4.15.2",
|
2020-12-24 04:57:46 +00:00
|
|
|
"async": "^3.2.0",
|
|
|
|
"cheerio": "^1.0.0-rc.5",
|
2018-09-26 22:15:02 +00:00
|
|
|
"compression": "^1.7.3",
|
2017-02-21 23:55:11 +00:00
|
|
|
"compressjs": "^1.0.3",
|
2021-05-07 04:56:31 +00:00
|
|
|
"dotenv": "^9.0.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",
|
2021-03-21 22:38:48 +00:00
|
|
|
"express-domain-middleware": "^0.1.0",
|
2021-05-07 05:27:51 +00:00
|
|
|
"facilmap-frontend": "3.2.0",
|
|
|
|
"facilmap-leaflet": "3.2.0",
|
|
|
|
"facilmap-types": "3.2.0",
|
|
|
|
"facilmap-utils": "3.2.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",
|
2021-02-28 22:17:26 +00:00
|
|
|
"leaflet": "^1.7.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",
|
2021-03-19 16:25:03 +00:00
|
|
|
"node-cron": "^3.0.0",
|
2021-05-08 18:49:31 +00:00
|
|
|
"node-fetch": "^2.6.1",
|
|
|
|
"p-throttle": "^4.1.1",
|
2018-09-26 12:00:12 +00:00
|
|
|
"promisify-node": "^0.5.0",
|
2020-12-24 04:57:46 +00:00
|
|
|
"sequelize": "^6.3.5",
|
2021-03-19 16:25:03 +00:00
|
|
|
"socket.io": "^4.0.0",
|
2020-04-14 23:40:00 +00:00
|
|
|
"stream-array": "^1.1.2",
|
2017-02-21 23:55:11 +00:00
|
|
|
"stream-combiner": "^0.2.2",
|
2020-12-24 04:57:46 +00:00
|
|
|
"string-similarity": "^4.0.3",
|
2021-04-08 17:05:02 +00:00
|
|
|
"strip-bom-buf": "^2.0.0",
|
2020-12-24 04:57:46 +00:00
|
|
|
"unzipper": "^0.10.11"
|
2017-02-21 23:55:11 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-12-24 04:57:46 +00:00
|
|
|
"@types/async": "^3.2.5",
|
2021-03-25 19:34:48 +00:00
|
|
|
"@types/cheerio": "^0.22.28",
|
2020-04-14 23:40:00 +00:00
|
|
|
"@types/compression": "^1.7.0",
|
|
|
|
"@types/debug": "^4.1.5",
|
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",
|
2021-03-21 22:38:48 +00:00
|
|
|
"@types/express-domain-middleware": "^0.0.6",
|
2020-12-24 04:57:46 +00:00
|
|
|
"@types/geojson": "^7946.0.7",
|
|
|
|
"@types/highland": "^2.12.10",
|
2021-03-18 11:22:34 +00:00
|
|
|
"@types/jest": "^26.0.20",
|
2020-12-24 04:57:46 +00:00
|
|
|
"@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",
|
2021-05-14 23:20:43 +00:00
|
|
|
"cpy-cli": "^3.1.1",
|
2021-02-28 22:17:26 +00:00
|
|
|
"debug": "^4.3.1",
|
2020-12-24 04:57:46 +00:00
|
|
|
"jest": "^26.6.3",
|
2021-04-15 21:30:25 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2020-12-24 04:57:46 +00:00
|
|
|
"ts-jest": "^26.4.4",
|
|
|
|
"ts-node": "^9.1.1",
|
|
|
|
"typescript": "^4.1.3",
|
2021-03-25 19:34:48 +00:00
|
|
|
"webpack": "^5.28.0",
|
2021-02-28 22:17:26 +00:00
|
|
|
"webpack-dev-middleware": "^4.1.0",
|
|
|
|
"webpack-hot-middleware": "^2.25.0"
|
2017-02-21 23:55:11 +00:00
|
|
|
}
|
|
|
|
}
|