This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.19 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
{
"name": "kube-workflow-dev",
"version": "1.22.15",
"repository": "[email protected]:SocialGouv/kube-workflow.git",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"link-module-alias": "^1.2.0"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"standard-version": "^9.3.2"
},
"resolutions": {
"@modjo-plugins/http-server": "latest",
"@modjo-plugins/core": "latest",
"@modjo-plugins/config": "latest",
"@modjo-plugins/express": "latest",
"@modjo-plugins/express-monitor": "latest",
"@modjo-plugins/http-logger": "latest",
"@modjo-plugins/lightship": "latest",
"@modjo-plugins/logger": "latest",
"@modjo-plugins/microservice-oapi": "latest",
"@modjo-plugins/oa": "latest",
"@modjo-plugins/shutdown-handlers": "latest"
},
"scripts": {
"precommit": "lint-staged",
"prepare": "husky install",
"lint": "eslint .",
"release": "standard-version",
"retag": "TAG=$(git describe --tags $(git rev-list --tags --max-count=1) | cut -d '.' -f 1) && git tag -f $TAG && git push origin :refs/tags/$TAG && git push -f origin master --tags",
"push": "git push -f --follow-tags origin master",
"delivery": "yarn release && yarn push",
"test": "yarn workspaces foreach --no-private --parallel run test",
"test:workflow": "yarn workspace kube-workflow test",
"test:webhook": "yarn workspace kube-webhook test",
"dev:webhook": "docker-compose up --build webhook",
"dev:webhook:built": "docker-compose -f docker-compose.built.yaml up --build webhook",
"upgrade:modjo": "yarn up -R \"@modjo-plugins/*\""
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"standard-version": {
"scripts": {
"posttag": "yarn retag"
}
},
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]"
}