-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.04 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.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
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "github-workflow-dispatch-proxy",
"version": "1.0.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-integration": "vitest --run --coverage --config vitest.config.integration.mts",
"test-integration:watch": "vitest --config vitest.config.integration.mts",
"test-unit": "vitest --run --coverage --config vitest.config.unit.mts",
"test-unit:watch": "vitest --config vitest.config.unit.mts"
},
"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": {
"@octokit/auth-app": "^7.1.1",
"@octokit/auth-callback": "^5.0.1",
"@open-policy-agent/opa-wasm": "^1.10.0",
"body-parser": "^1.20.3",
"express": "^4.21.0",
"jose": "^5.9.2",
"lru-cache": "^11.0.1",
"octokit": "^4.0.2",
"openid-client": "^6.1.7",
"pino": "^9.4.0",
"pino-http": "^10.3.0",
"pino-pretty": "^13.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@abinnovision/commitlint-config": "^2.2.0",
"@abinnovision/eslint-config-base": "^2.1.0",
"@abinnovision/eslint-config-typescript": "^2.1.0",
"@abinnovision/prettier-config": "^2.1.0",
"@commitlint/cli": "^19.6.0",
"@types/body-parser": "^1",
"@types/express": "^4",
"@types/node": "^22.7.4",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.1.1",
"cpy": "^11.1.0",
"dotenv-cli": "^7.4.2",
"esbuild": "^0.24.0",
"esbuild-node-tsc": "^2.0.5",
"eslint": "^9.13.0",
"get-port-please": "^3.1.2",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nock": "^14.0.0-beta.6",
"nodemon": "^3.1.4",
"oauth2-mock-server": "^7.1.2",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"packageManager": "yarn@4.5.0"
}