-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "authzen-proxy",
"version": "1.0.4",
"description": "AuthZEN to OPA proxy",
"main": "index.ts",
"scripts": {
"build": "rm -rf ./build && tsc",
"start": "node build/index.js",
"dev": "nodemon ./src/index.ts",
"docker-build": "scripts/docker-build.sh",
"docker-run": "scripts/docker-run.sh",
"tsc": "tsc --noEmit --incremental",
"release": "./scripts/release.sh"
},
"repository": "https://github.com/aserto-dev/authzen-opa-proxy",
"author": "Omri Gazitt",
"license": "MIT",
"private": true,
"dependencies": {
"axios": "^1.6.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"express": "^4.18.3",
"express-jwt": "^8.4.1"
},
"prettier": "@aserto/ts-linting-configs/prettier.config",
"devDependencies": {
"@aserto/ts-linting-configs": "^2.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"packageManager": "yarn@1.22.19"
}