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

64 lines
1.9 KiB
JSON
Raw Normal View History

2022-06-23 09:33:14 +00:00
{
"name": "@standardnotes/api-gateway",
"version": "1.38.1",
2022-06-23 09:33:14 +00:00
"engines": {
"node": ">=16.0.0 <17.0.0"
},
2022-07-06 08:07:44 +00:00
"private": true,
2022-06-23 09:33:14 +00:00
"description": "API Gateway For Standard Notes Services",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"repository": "git@github.com:standardnotes/api-gateway.git",
"author": "Karol Sójko <karolsojko@standardnotes.com>",
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",
2022-06-23 09:33:14 +00:00
"lint": "eslint . --ext .ts",
"setup:env": "cp .env.sample .env",
2022-06-23 09:33:14 +00:00
"start": "yarn node dist/bin/server.js",
2022-06-27 21:47:19 +00:00
"upgrade:snjs": "yarn ncu -u '@standardnotes/*'"
2022-06-23 09:33:14 +00:00
},
"dependencies": {
"@newrelic/native-metrics": "^9.0.0",
"@newrelic/winston-enricher": "^4.0.0",
2022-06-27 04:59:15 +00:00
"@sentry/node": "^7.3.0",
"@standardnotes/common": "workspace:^",
2022-07-06 08:19:27 +00:00
"@standardnotes/domain-events": "workspace:*",
"@standardnotes/domain-events-infra": "workspace:*",
2022-07-06 09:27:19 +00:00
"@standardnotes/security": "workspace:*",
2022-07-06 09:46:04 +00:00
"@standardnotes/time": "workspace:*",
2022-06-23 09:33:14 +00:00
"aws-sdk": "^2.1160.0",
2022-11-10 14:35:32 +00:00
"axios": "^1.1.3",
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-07-13 07:23:36 +00:00
"express": "^4.18.1",
2022-10-06 10:02:29 +00:00
"helmet": "^6.0.0",
2022-06-23 09:33:14 +00:00
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
2022-07-15 10:55:21 +00:00
"ioredis": "^5.2.0",
2022-06-23 09:33:14 +00:00
"jsonwebtoken": "8.5.1",
2022-11-14 09:01:08 +00:00
"newrelic": "^9.6.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",
"@types/express": "^4.17.11",
"@types/ioredis": "^4.28.10",
2022-10-06 10:43:30 +00:00
"@types/jest": "^29.1.1",
2022-06-23 09:33:14 +00:00
"@types/jsonwebtoken": "^8.5.0",
2022-11-14 09:01:08 +00:00
"@types/newrelic": "^7.0.4",
2022-07-12 18:13:50 +00:00
"@types/prettyjson": "^0.0.30",
2022-06-23 09:33:14 +00:00
"@typescript-eslint/eslint-plugin": "^5.29.0",
"eslint": "^8.14.0",
"eslint-plugin-prettier": "^4.0.0",
2022-10-06 10:43:30 +00:00
"jest": "^29.1.2",
2022-07-15 09:46:32 +00:00
"nodemon": "^2.0.19",
2022-07-27 11:12:25 +00:00
"npm-check-updates": "^16.0.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
2022-06-23 09:33:14 +00:00
}
}