-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.12 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.12 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "https://json.schemastore.org/package.json",
"name": "github-workflow-dispatch-proxy",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/abinnoivison/github-workflow-dispatch-proxy"
},
"license": "Apache-2.0",
"author": {
"name": "AB INNOVISION GmbH",
"email": "info@abinnovision.com",
"url": "https://abinnovision.com/"
},
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json && etsc",
"check": "yarn format:check && yarn lint:check",
"fix": "yarn format:fix && yarn lint:fix",
"format:check": "prettier --check '{{src,test,cypress}/**/*,*}.{js,jsx,ts,tsx,json,json5,yml,yaml,md}'",
"format:fix": "prettier --write '{{src,test,cypress}/**/*,*}.{js,jsx,ts,tsx,json,json5,yml,yaml,md}'",
"postinstall": "husky || exit 0",
"lint:check": "eslint '{{src,test,cypress}/**/*,*}.{js,jsx,ts,tsx}'",
"lint:fix": "eslint '{{src,test,cypress}/**/*,*}.{js,jsx,ts,tsx}' --fix",
"sort:check": "sort-package-json --check",
"sort:fix": "sort-package-json",
"start:dev": "dotenv -v NODE_ENV=development -c development -- nodemon",
"test": "vitest --run --coverage",
"test:watch": "vitest",
"test-integration": "vitest --run --coverage --project \\*#integration",
"test-integration:watch": "vitest --project \\*#integration",
"test-unit": "vitest --run --coverage --project \\*#unit",
"test-unit:watch": "vitest --project \\*#unit"
},
"commitlint": {
"extends": [
"@abinnovision/commitlint-config"
]
},
"lint-staged": {
"{src,test}/**/*.{js,ts}": [
"eslint --fix"
],
"{{src,test}/**/*,*}.{js,ts,json,json5,yml,yaml,md}": [
"prettier --write"
],
"{.github/**/*,*}.{json,json5,yaml,yml,md}": [
"prettier --write"
],
"**/package.json": [
"sort-package-json"
]
},
"prettier": "@abinnovision/prettier-config",
"dependencies": {
"@cross-policy/core": "^0.1.0",
"@cross-policy/target-cel": "^0.1.0",
"@cross-policy/target-opa-wasm": "^0.1.0",
"@octokit/auth-app": "^7.1.1",
"@octokit/auth-callback": "^5.0.1",
"body-parser": "^1.20.3",
"express": "^4.21.0",
"jose": "^5.9.2",
"lru-cache": "^11.0.1",
"octokit": "^4.0.2",
"openid-client": "^5.7.0",
"pino": "^9.4.0",
"pino-http": "^10.4.0",
"pino-pretty": "^13.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@abinnovision/commitlint-config": "^2.2.1",
"@abinnovision/eslint-config-base": "^2.2.0",
"@abinnovision/eslint-config-typescript": "^2.2.1",
"@abinnovision/prettier-config": "^2.1.3",
"@commitlint/cli": "^19.7.1",
"@types/body-parser": "^1",
"@types/express": "^4",
"@types/node": "^22.13.1",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^3.0.5",
"cpy": "^11.1.0",
"dotenv-cli": "^8.0.0",
"esbuild": "^0.25.0",
"esbuild-node-tsc": "^2.0.5",
"eslint": "^9.20.1",
"get-port-please": "^3.1.2",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nock": "^14.0.1",
"nodemon": "^3.1.4",
"oauth2-mock-server": "^7.2.0",
"prettier": "^3.5.1",
"sort-package-json": "^2.14.0",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"packageManager": "yarn@4.6.0"
}