-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.82 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
{
"name": "@magda/minion-format",
"description": "MAGDA Layering Minion",
"version": "2.0.1",
"scripts": {
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "yarn run compile",
"compile": "tsc -b",
"watch": "tsc -b --watch",
"start": "node dist/index.js",
"dev": "run-typescript-in-nodemon src/index.ts",
"docker-build-local": "create-docker-context-for-node-component --build --push --tag auto --local",
"docker-build-prod": "create-docker-context-for-node-component --build --push --tag auto",
"test": "mocha",
"helm-lint": "helm lint deploy/magda-minion-format -f deploy/test-deploy.yaml",
"helm-docs": "docker run --rm -v \"$(pwd):/helm-docs\" -u $(id -u) jnorwood/helm-docs:v1.11.0 -t ./README.md.gotmpl -o ../../README.md",
"update-all-charts": "helm dep up ./deploy/magda-minion-format",
"add-all-chart-version-changes": "git ls-files -m | grep Chart.yaml | xargs git add && git ls-files -m | grep Chart.lock | xargs git add",
"add-all-helm-docs-changes": "yarn helm-docs && git ls-files -m | grep -i readme.md | xargs git add",
"version": "yarn update-helm-chart-version && yarn update-all-charts && yarn add-all-chart-version-changes && yarn add-all-helm-docs-changes",
"retag-and-push": "retag-and-push"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@magda/ci-utils": "^1.0.5",
"@magda/docker-utils": "^2.1.1",
"@types/chai": "^4.3.3",
"@types/express": "4.17.9",
"@types/lodash": "^4.14.185",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^9.1.1",
"@types/sinon": "^7.5.1",
"@types/urijs": "^1.19.19",
"chai": "^4.3.6",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.0",
"sinon": "^8.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@magda/minion-sdk": "^2.1.1",
"@magda/registry-aspects": "^2.1.1",
"@magda/utils": "^2.1.1",
"@types/escape-string-regexp": "^0.0.32",
"escape-string-regexp": "^1.0.5",
"lodash": "^4.17.21",
"mime-types": "^2.1.31",
"urijs": "^1.19.11"
},
"resolutions": {
"@types/express": "4.17.9"
},
"config": {
"registryUrl": "http://localhost:6101/v0",
"docker": {
"name": "data61/magda-minion-format",
"include": "node_modules dist Dockerfile synonyms.json package.json"
},
"jwtSecret": "ZJp1yZQPwGU0WZfIydX5q1FMEZNQS2pQLy8xcF1k5ai0P4LWinzCLtGCl1hEPrlhCGeOspZV/JTncM1dPSdsX8UhDvyvsMi6ZmB4+z6dHTdQlnsNHPlMzqLxyzT5IFRVZGjysPkktLAadqq81T/MyQ7iNIbYupVbUza2Q9GN6s8=",
"userId": "00000000-0000-4000-8000-000000000000"
},
"magda": {
"language": "typescript",
"categories": {
"minion": true
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}