2022-06-23 09:33:14 +00:00
|
|
|
{
|
|
|
|
"name": "@standardnotes/api-gateway",
|
2023-12-22 11:50:04 +00:00
|
|
|
"version": "1.89.4",
|
2022-06-23 09:33:14 +00:00
|
|
|
"engines": {
|
2023-05-09 09:47:45 +00:00
|
|
|
"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",
|
2023-05-09 10:49:34 +00:00
|
|
|
"types": "dist/src/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist/src/**/*.js",
|
|
|
|
"dist/src/**/*.d.ts"
|
|
|
|
],
|
2023-11-27 08:53:16 +00:00
|
|
|
"repository": {
|
2023-11-27 09:14:33 +00:00
|
|
|
"type": "git",
|
|
|
|
"url": "git@github.com:standardnotes/server.git",
|
2023-11-27 08:53:16 +00:00
|
|
|
"directory": "packages/api-gateway"
|
|
|
|
},
|
2023-05-31 08:41:49 +00:00
|
|
|
"author": "Karol Sójko <karol@standardnotes.com>",
|
2022-06-23 09:33:14 +00:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2023-05-31 10:59:20 +00:00
|
|
|
"publishConfig": {
|
2023-11-27 08:20:10 +00:00
|
|
|
"access": "public",
|
|
|
|
"provenance": true
|
2023-05-31 10:59:20 +00:00
|
|
|
},
|
2022-06-23 09:33:14 +00:00
|
|
|
"scripts": {
|
|
|
|
"clean": "rm -fr dist",
|
2022-10-19 08:25:01 +00:00
|
|
|
"build": "tsc --build",
|
2022-06-23 09:33:14 +00:00
|
|
|
"lint": "eslint . --ext .ts",
|
2023-07-31 11:23:39 +00:00
|
|
|
"lint:fix": "eslint . --fix --ext .ts",
|
2022-06-24 13:18:41 +00:00
|
|
|
"setup:env": "cp .env.sample .env",
|
2023-09-18 11:32:49 +00:00
|
|
|
"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",
|
2023-01-19 13:05:48 +00:00
|
|
|
"@standardnotes/domain-core": "workspace:^",
|
2022-07-06 08:19:27 +00:00
|
|
|
"@standardnotes/domain-events": "workspace:*",
|
|
|
|
"@standardnotes/domain-events-infra": "workspace:*",
|
2023-11-16 09:10:42 +00:00
|
|
|
"@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:*",
|
2023-11-10 13:52:44 +00:00
|
|
|
"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",
|
2023-01-13 09:03:03 +00:00
|
|
|
"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",
|
2023-09-04 06:22:42 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.5.0",
|
2023-09-01 14:14:51 +00:00
|
|
|
"@typescript-eslint/parser": "^6.5.0",
|
2023-05-05 08:58:36 +00:00
|
|
|
"eslint": "^8.39.0",
|
2023-09-01 14:14:51 +00:00
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
2023-05-05 08:49:47 +00:00
|
|
|
"jest": "^29.5.0",
|
2023-09-01 14:14:51 +00:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|