-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.05 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.05 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "authzen-topaz-proxy",
"version": "1.0.21",
"description": "AuthZEN to Aserto proxy",
"main": "./build-server/index.js",
"scripts": {
"build-all": "yarn clean && concurrently \"yarn build\" \"yarn build-server\"",
"build-server": "rm -rf build-server && tsc -p service",
"build": "react-scripts build",
"clean": "rm -rf build && rm -rf build-server",
"client": "PORT=3000 react-scripts start",
"dev": "concurrently \"yarn run server-dev\" \"yarn run client\"",
"docker-build": "scripts/docker-build.sh",
"docker-run": "scripts/docker-run.sh",
"eject": "react-scripts eject",
"prod": "yarn build-all && yarn server",
"release": "./scripts/release.sh",
"server-dev": "nodemon ./server/index.ts",
"server": "node ./build-server/index.js"
},
"repository": "https://github.com/aserto-dev/authzen-topaz-proxy",
"author": "Omri Gazitt",
"license": "MIT",
"private": true,
"dependencies": {
"@aserto/aserto-node": "0.33.7",
"@aserto/authzen-interop-react": "1.0.8",
"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",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"typescript": "^5.4.2"
},
"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",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.7.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@1.22.19"
}