standardnotes-server/packages/api-gateway/package.json

74 lines
2.1 KiB
JSON
Raw Normal View History

2022-06-23 09:33:14 +00:00
{
"name": "@standardnotes/api-gateway",
"version": "1.89.4",
2022-06-23 09:33:14 +00:00
"engines": {
"node": ">=18.0.0 <21.0.0"
2022-06-23 09:33:14 +00:00
},
"description": "API Gateway For Standard Notes Services",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git@github.com:standardnotes/server.git",
"directory": "packages/api-gateway"
},
"author": "Karol Sójko <karol@standardnotes.com>",
2022-06-23 09:33:14 +00:00
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public",
"provenance": true
},
2022-06-23 09:33:14 +00:00
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",
2022-06-23 09:33:14 +00:00
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"setup:env": "cp .env.sample .env",
"start": "yarn node dist/bin/server.js"
2022-06-23 09:33:14 +00:00
},
"dependencies": {
2023-12-07 05:49:47 +00:00
"@grpc/grpc-js": "^1.9.12",
"@standardnotes/domain-core": "workspace:^",
2022-07-06 08:19:27 +00:00
"@standardnotes/domain-events": "workspace:*",
"@standardnotes/domain-events-infra": "workspace:*",
"@standardnotes/grpc": "workspace:^",
2022-07-06 09:27:19 +00:00
"@standardnotes/security": "workspace:*",
2022-07-06 09:46:04 +00:00
"@standardnotes/time": "workspace:*",
"agentkeepalive": "^4.5.0",
"axios": "^1.6.1",
2022-06-23 09:33:14 +00:00
"cors": "2.8.5",
2022-07-12 13:24:35 +00:00
"dotenv": "^16.0.1",
2022-11-14 09:09:42 +00:00
"express": "^4.18.2",
"express-robots-txt": "^1.0.0",
2023-08-30 05:48:00 +00:00
"helmet": "^7.0.0",
2022-06-23 09:33:14 +00:00
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
2022-11-14 09:08:54 +00:00
"ioredis": "^5.2.4",
2023-01-13 09:53:46 +00:00
"jsonwebtoken": "^9.0.0",
2022-07-12 18:14:33 +00:00
"prettyjson": "^1.2.5",
2022-06-23 09:33:14 +00:00
"reflect-metadata": "0.1.13",
2022-07-12 18:20:03 +00:00
"winston": "^3.8.1"
2022-06-23 09:33:14 +00:00
},
"devDependencies": {
"@types/cors": "^2.8.9",
2022-11-14 09:09:42 +00:00
"@types/express": "^4.17.14",
2022-11-14 09:08:54 +00:00
"@types/ioredis": "^5.0.0",
2023-05-05 08:49:47 +00:00
"@types/jest": "^29.5.1",
2023-01-13 09:53:46 +00:00
"@types/jsonwebtoken": "^9.0.1",
2023-08-30 05:48:00 +00:00
"@types/node": "^20.5.7",
2022-07-12 18:13:50 +00:00
"@types/prettyjson": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
2023-05-05 08:58:36 +00:00
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^5.0.0",
2023-05-05 08:49:47 +00:00
"jest": "^29.5.0",
"prettier": "^3.0.3",
2023-05-05 08:49:47 +00:00
"ts-jest": "^29.1.0",
2023-05-05 08:53:25 +00:00
"typescript": "^5.0.4"
2022-06-23 09:33:14 +00:00
}
}