-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
137 lines (137 loc) · 4.65 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"author": "RedKubes",
"bugs": {
"url": "https://github.com/linode/apl-tasks/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "9.0.6",
"@kubernetes/client-node": "0.22.1",
"@linode/apl-k8s-operator": "0.1.0",
"@linode/gitea-client-node": "1.19.1",
"@linode/harbor-client-node": "^2.2.1",
"@linode/keycloak-client-node": "^15.0.0",
"async-retry": "1.3.3",
"aws-sdk": "2.1692.0",
"axios": "1.7.4",
"bluebird": "3.7.2",
"cookie": "0.7.0",
"dotenv": "^16.4.7",
"envalid": "8.0.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"lowdb": "1.0.0",
"morgan": "1.10.0",
"openid-client": "5.7.0",
"ts-custom-error": "3.3.1"
},
"description": "Tasks needed by the APL Container Platform to glue all the pieces together.",
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@hkdobrev/run-if-changed": "0.3.1",
"@types/async-retry": "1.4.8",
"@types/express": "4.17.7",
"@types/jest": "^29.5.14",
"@types/lodash": "4.17.14",
"@types/lowdb": "1.0.9",
"@types/node": "16.7.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"commitizen": "4.3.1",
"copyfiles": "2.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"git-cz": "4.7.6",
"github-release-from-changelog": "2.1.1",
"globals": "^15.13.0",
"husky": "9.1.7",
"jest": "^29.7.0",
"jsonwebtoken": "9.0.2",
"lint-staged": "10.5.4",
"nock": "13.0.3",
"node-notifier": "8.0.1",
"npm-run-all": "4.1.5",
"openapi-schema-validator": "3.0.3",
"prettier": "^3.4.2",
"standard-version": "9.3.1",
"ts-jest": "^29.2.5",
"ts-node": "10.2.1",
"ts-node-dev": "1.1.8",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22.0.0",
"npm": "^10"
},
"homepage": "https://github.com/linode/apl-tasks#readme",
"license": "Apache-2.0",
"lint-staged": {
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
]
},
"main": "",
"name": "otomi-tasks",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/linode/apl-tasks.git"
},
"run-if-changed": {
"package-lock.json": "npm install --prefer-offline --no-audit"
},
"scripts": {
"build": "tsc",
"cz:retry": "git-cz --retry",
"cz": "git-cz",
"lint-staged": "lint-staged",
"lint:es:fix": "eslint --fix '**/*.ts'",
"lint:es": "eslint '**/*.ts'",
"lint:types": "tsc",
"lint": "run-p lint:types lint:es",
"prepare": "husky install",
"release": "standard-version",
"release:bump:minor": "standard-version --skip.changelog true --release-as minor",
"run-if-changed": "run-if-changed",
"tasks:certs-aws-dev": "ts-node-dev ./src/tasks/otomi/certs-aws.ts",
"tasks:certs-aws": "node dist/src/tasks/otomi/certs-aws.js",
"tasks:copy-certs-dev": "ts-node-dev ./src/tasks/otomi/copy-certs.ts",
"tasks:copy-certs": "node dist/src/tasks/otomi/copy-certs.js",
"tasks:copy-certs-argo": "node dist/src/tasks/otomi/copy-certs-argo.js",
"tasks:keycloak-users-dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev ./src/tasks/keycloak/users.ts",
"tasks:otomi-chart-dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev ./src/tasks/otomi/otomi-chart.ts",
"tasks:otomi-chart": "node dist/src/tasks/otomi/otomi-chart.js",
"tasks:wait-for-dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev ./src/tasks/otomi/wait-for.ts",
"tasks:wait-for": "node dist/src/tasks/otomi/wait-for.js",
"operator:secrets-dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev ./src/operator/secrets.ts",
"operator:secrets": "node dist/src/operator/secrets.js",
"operator:gitea-dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev ./src/operator/gitea.ts",
"operator:gitea": "node dist/src/operator/gitea.js",
"operator:harbor-dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev ./src/operator/harbor.ts",
"operator:harbor": "node dist/src/operator/harbor.js",
"operator:keycloak-dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev ./src/operator/keycloak.ts",
"operator:keycloak": "node dist/src/operator/keycloak.js",
"test": "jest"
},
"standard-version": {
"skip": {
"tag": true
}
},
"version": "3.6.1"
}