-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.11 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
{
"name": "infra-startups",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"async": "^3.2.4",
"async-retry": "^1.3.3",
"axios": "^1.2.0",
"axios-retry": "^3.3.1",
"commander": "^9.4.1",
"decompress": "^4.2.1",
"dotenv": "^16.0.3",
"enquirer": "^2.3.6",
"form-data": "^4.0.0",
"foundernetes": "^1.1.3",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"link-module-alias": "^1.2.0",
"lodash": "^4.17.21",
"lodash.camelcase": "^4.3.0",
"lodash.mergewith": "^4.6.2",
"micromatch": "^4.0.5",
"node-random-name": "^1.0.1",
"parse-github-url": "^1.0.2",
"pretty-ms": "^8.0.0",
"qs": "^6.11.0",
"slugify": "^1.6.5",
"sonic-boom": "^3.2.0",
"tiged": "^2.12.3",
"which": "^3.0.0",
"ya-retry": "^1.2.0",
"yaml": "^2.1.3",
"zx": "^7.1.1"
},
"devDependencies": {
"docsify-cli": "^4.4.4",
"eslint": "^8.28.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": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-specific-snapshot": "^7.0.0",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"replace": "^1.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"scripts": {
"start": "yarn play",
"play": "foundernetes play",
"lint": "eslint .",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest tests",
"test:debug": "DEBUG=1 yarn test",
"test:update-snapshots": "yarn test -u",
"postinstall": "[ -d '.husky' ] && husky install || true && link-module-alias",
"precommit": "lint-staged",
"dev:docs": "docsify serve docs",
"docker:build": "DOCKER_BUILDKIT=1 docker build --progress=plain -f Dockerfile -t infra-loops .",
"docker:run": "docker run -it infra-loops",
"docker": "yarn docker:build && yarn docker:run"
},
"_moduleAliases": {
"~": "."
},
"packageManager": "yarn@3.3.0"
}