facilmap/server/package.json

101 wiersze
2.9 KiB
JSON
Czysty Zwykły widok Historia

{
"name": "facilmap-server",
2024-04-24 10:48:36 +00:00
"version": "5.0.0-alpha",
"type": "module",
"description": "A fully-featured OpenStreetMap-based map where markers and lines can be added with live collaboration.",
"keywords": [
"maps",
"osm"
],
2021-04-04 13:35:31 +00:00
"homepage": "https://github.com/FacilMap/facilmap",
"bugs": {
2021-04-04 13:35:31 +00:00
"url": "https://github.com/FacilMap/facilmap/issues"
},
"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"
},
2021-04-10 00:12:28 +00:00
"files": [
"dist",
2021-04-10 00:12:28 +00:00
"src",
"README.md",
2023-10-02 03:23:22 +00:00
"bin"
2021-04-10 00:12:28 +00:00
],
"scripts": {
2023-10-02 03:23:22 +00:00
"build": "vite build",
"clean": "rimraf dist out",
"prod-server": "DOTENV_CONFIG_PATH=../config.env node ./bin/facilmap-server.js",
"server": "DOTENV_CONFIG_PATH=../config.env NODE_OPTIONS='--import tsx' vite-node ./server.ts",
"dev-server": "FM_DEV=true DOTENV_CONFIG_PATH=../config.env NODE_OPTIONS='--import tsx' vite-node ./server.ts",
2023-10-30 00:14:54 +00:00
"test": "vitest run",
"test-watch": "vitest",
"check-types": "tsc -b --emitDeclarationOnly",
2021-02-28 22:17:26 +00:00
"lint": "eslint src/**/*.ts"
},
2023-10-02 03:23:22 +00:00
"main": "./dist/facilmap-server.mjs",
"types": "./dist/facilmap-server.d.ts",
"directories": {
"bin": "./bin"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"compression": "^1.7.4",
"compressjs": "^1.0.3",
"cookie": "^0.6.0",
"cookie-parser": "^1.4.6",
2024-03-07 02:30:24 +00:00
"csv-stringify": "^6.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
2024-04-09 19:12:34 +00:00
"express": "5.0.0-beta.3",
2021-03-21 22:38:48 +00:00
"express-domain-middleware": "^0.1.0",
2023-10-06 23:13:51 +00:00
"facilmap-frontend": "workspace:^",
"facilmap-leaflet": "workspace:^",
"facilmap-types": "workspace:^",
"facilmap-utils": "workspace:^",
2023-10-02 03:23:22 +00:00
"find-cache-dir": "^5.0.0",
2024-04-09 19:12:34 +00:00
"i18next": "^23.11.1",
"i18next-http-middleware": "^3.5.0",
"lodash-es": "^4.17.21",
2023-12-26 11:24:03 +00:00
"maxmind": "^4.3.18",
2020-04-15 00:44:54 +00:00
"md5-file": "^5.0.0",
2024-04-09 19:12:34 +00:00
"mysql2": "^3.9.4",
2023-12-26 11:24:03 +00:00
"p-throttle": "^6.1.0",
2024-04-09 19:12:34 +00:00
"pg": "^8.11.5",
"proxy-addr": "^2.0.7",
2024-04-09 19:12:34 +00:00
"sequelize": "^6.37.2",
2024-04-03 10:54:47 +00:00
"serialize-error": "^11.0.3",
2024-04-09 19:12:34 +00:00
"socket.io": "^4.7.5",
"string-similarity": "^4.0.4",
2023-11-11 07:01:40 +00:00
"strip-bom-buf": "^4.0.0",
2024-03-07 02:30:24 +00:00
"unzipper": "^0.10.14",
2024-04-09 19:12:34 +00:00
"zip-stream": "^6.0.1",
2024-03-07 02:30:24 +00:00
"zod": "^3.22.4"
},
"devDependencies": {
2023-11-11 07:01:40 +00:00
"@types/compression": "^1.7.5",
"@types/cookie": "^0.6.0",
"@types/cookie-parser": "^1.4.7",
2023-11-11 07:01:40 +00:00
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/express-domain-middleware": "^0.0.9",
2024-03-07 02:30:24 +00:00
"@types/geojson": "^7946.0.14",
2023-12-26 11:24:03 +00:00
"@types/lodash-es": "^4.17.12",
2024-04-09 19:12:34 +00:00
"@types/node": "^20.12.6",
"@types/proxy-addr": "^2.0.3",
2023-11-11 07:01:40 +00:00
"@types/string-similarity": "^4.0.2",
2023-10-02 03:23:22 +00:00
"cpy-cli": "^5.0.0",
"debug": "^4.3.4",
2023-10-06 23:13:51 +00:00
"rimraf": "^5.0.5",
2024-04-09 19:12:34 +00:00
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-node": "^1.4.0",
2024-04-15 02:01:48 +00:00
"vite-plugin-dts": "^3.8.2",
2024-04-09 19:12:34 +00:00
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
}
}