41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "blackroad-os-api-gateway",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "npm run lint && npm run test && npm run compile && tsx scripts/postbuild.ts",
|
|
"build:dist": "npm run compile && tsx scripts/postbuild.ts",
|
|
"compile": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/http-proxy": "^9.0.0",
|
|
"@fastify/jwt": "^8.0.0",
|
|
"@fastify/rate-limit": "^8.0.0",
|
|
"dotenv": "^16.4.5",
|
|
"fastify": "^4.28.1",
|
|
"fastify-plugin": "^4.5.1",
|
|
"mercurius": "^13.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^9.0.6",
|
|
"@types/node": "^20.12.12",
|
|
"@types/supertest": "^2.0.16",
|
|
"@typescript-eslint/eslint-plugin": "^7.11.0",
|
|
"@typescript-eslint/parser": "^7.11.0",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"prettier": "^3.2.5",
|
|
"supertest": "^6.3.4",
|
|
"tsx": "^4.7.3",
|
|
"typescript": "5.5.4",
|
|
"vitest": "^1.6.0"
|
|
}
|
|
}
|