Skip to content

Commit

Permalink
SM-6117 Spy Reverse Proxy: ability to override http status code (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
mildronize authored Feb 8, 2024
2 parents 2b21949 + 1a7013c commit 4d24bde
Show file tree
Hide file tree
Showing 39 changed files with 2,435 additions and 95 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,10 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

# Azurite
.azurite

# Data cache
.srp
16 changes: 15 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,40 @@
"build": "esbuild src/main.ts --bundle --platform=node --target=node16 --format=cjs --outfile=dist/main.cjs --minify",
"format": "prettier -w src",
"lint": "tsc --noEmit && eslint ./src && prettier -c src",
"lint:fix": "eslint --fix ./src && prettier -w src"
"lint:fix": "eslint --fix ./src && prettier -w src",
"azurite": "pnpx azurite --silent --location ./.azurite --debug ./.azurite/debug.log"
},
"keywords": [],
"author": "Thada Wangthammang",
"license": "MIT",
"devDependencies": {
"@azure/core-paging": "^1.5.0",
"@types/express": "^4.17.21",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@vitest/coverage-v8": "^1.1.3",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"node-mocks-http": "^1.14.1",
"prettier": "^3.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
},
"dependencies": {
"@azure/data-tables": "^13.2.2",
"@thaitype/data-viewer-server": "^1.0.0",
"@thaitype/record-parser": "^1.0.0",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"lru-cache": "^10.2.0",
"pino": "^8.18.0",
"pino-http": "^9.0.0",
"pino-pretty": "^10.3.1",
"tiny-invariant": "^1.3.1",
"ts-odata-client": "^2.0.2",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.0"
}
Expand Down
Loading

0 comments on commit 4d24bde

Please sign in to comment.