-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.43 KB
/
package.json
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
{
"name": "nginx-auth-poc",
"version": "1.0.0",
"license": "GPL-3.0",
"engines": {
"node": "18",
"npm": "please-use-yarn",
"pnpm": "please-use-yarn"
},
"scripts": {
"lint": "cd authorization-server && yarn lint",
"test": "cd authorization-server && yarn test",
"test:unit": "cd authorization-server && yarn test:unit",
"test:e2e": "cd authorization-server && yarn test:e2e",
"clean": "rimraf node_modules authorization-server/dist authorization-server/node_modules backend-server/node_modules generate-identity-cli/node_modules",
"postinstall": "run-s install:*",
"install:backend-server": "cd backend-server && yarn",
"install:authorization-server": "cd authorization-server && yarn",
"install:generate-identity-cli": "cd generate-identity-cli && yarn",
"build": "cd authorization-server && yarn build",
"build:docker": "run-p build:docker:*",
"build:docker:webserver": "cd nginx && docker build . -t did-auth-proxy-webserver",
"build:docker:backend-server": "cd backend-server && docker build . -t did-auth-proxy-backend",
"build:docker:authorization-server": "cd authorization-server && docker build . -t did-auth-proxy-auth-server",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"husky": "^7",
"lint-staged": "^13.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}