This repository has been archived by the owner on Nov 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.84 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
{
"name": "infra-as-loop",
"version": "1.2.11",
"description": "Infra as Code on idempotency pipelines framework ☀️",
"license": "MIT",
"author": {
"name": "La Fabrique Numérique des Ministères Sociaux",
"email": "[email protected]",
"url": "https://www.fabrique.social.gouv.fr/"
},
"scripts": {
"postinstall": "link-module-alias && yarn run init:husky && yarn run init:env",
"lint": "eslint .",
"trace": "yarn start --no-clean --log-level=trace",
"debug": "yarn start --no-clean --log-level=debug",
"start": "PATH=$PATH:$PWD/bin:$PWD/node_modules/.bin bash -c 'set -o allexport; source .env; set +o allexport; snip playbooks'",
"docker:build": "docker build -t infra-as-loop .",
"docker:run": "docker run -it $@ infra-as-loop",
"docker:start": "bash -c 'set -o allexport; source .env; set +o allexport; yarn docker:run -e RANCHER_TOKEN=$RANCHER_TOKEN -e GITHUB_TOKEN=$GITHUB_TOKEN'",
"docker": "yarn docker:build && yarn docker:run",
"test": "jest tests --passWithNoTests",
"precommit": "lint-staged",
"init:husky": "[ -d '.husky' ] && husky install || true",
"init:env": "[ ! -f .env ] && cp .env.default .env || true",
"release": "standard-version",
"retag": "TAG=$(git describe --tags $(git rev-list --tags --max-count=1) | cut -d '.' -f 1) && git branch -f v1 master && git push -f origin v1",
"push": "git push -f --follow-tags origin master",
"delivery": "git push && yarn release && yarn push"
},
"dependencies": {
"async-retry": "^1.3.3",
"axios": "^0.27.2",
"axios-retry": "^3.3.1",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"link-module-alias": "^1.2.0",
"lodash.camelcase": "^4.3.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.get": "^4.4.2",
"lodash.mergewith": "^4.6.2",
"nctx": "^1.3.0",
"parse-github-url": "^1.0.2",
"pino": "^8.3.1",
"pino-bfuscate": "^1.0.0",
"pino-pretty": "^8.1.0",
"pretty-ms": "^7.0.1",
"slugify": "^1.6.5",
"tweetsodium": "0.0.5",
"uuid": "^8.3.2",
"valid-json-cli": "^1.4.1",
"which": "^2.0.2",
"yaml": "^2.1.1",
"zx": "^7.0.8"
},
"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-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"standard-version": "^9.3.2"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"standard-version": {
"scripts": {
"posttag": "yarn retag"
}
},
"engines": {
"node": ">=14"
},
"_moduleAliases": {
"~": "common"
},
"packageManager": "[email protected]"
}