-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.57 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
{
"name": "era-ci-root",
"private": true,
"version": "2.0.0",
"license": "UNLICENSED",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"lint:code": "eslint --cache --max-warnings 0 'packages/*/**/*.{ts,js,json,d.ts}'",
"lint:versions": "syncpack list-mismatches",
"lint:staged-files": "yarn lint-staged && yarn pretty-quick --staged && yarn build && yarn lint:versions",
"test": "jest",
"run-mocks": "yarn workspace @era-ci/quick-start start-mocks",
"run-era-ci": "time node --trace-warnings --unhandled-rejections=strict packages/core/dist/src/index.js",
"run-era-ci:secrethub": "secrethub run --ignore-missing-secrets -- yarn run-era-ci",
"run-task-worker": "time node --unhandled-rejections=strict packages/task-worker/dist/src/index.js",
"run-task-worker:secrethub": "secrethub run --ignore-missing-secrets -- yarn run-task-worker",
"core:make-executable": "chmod +x packages/core/dist/src/index.js",
"build:tsc": "yarn tsc -b tsconfig-build.json",
"build": "yarn build:tsc",
"clean": "yarn build:tsc --clean",
"build:watch": "yarn build:tsc --watch",
"docker-resources:up": "yarn workspace @era-ci/quick-start docker-compose:up",
"docker-resources:down": "yarn workspace @era-ci/quick-start docker-compose:down",
"docker-resources:reset": "yarn docker-resources:down && yarn docker-resources:up",
"k8s-resources:up": "yarn workspace @era-ci/quick-start create-k8s-cluster",
"k8s-resources:down": "yarn workspace @era-ci/quick-start delete-k8s-cluster",
"k8s-resources:reset": "yarn k8s-resources:down && yarn k8s-resources:up",
"all-resources:reset": "yarn docker-resources:reset && yarn k8s-resources:reset"
},
"repository": {
"url": "https://github.com/stavalfi/era-ci"
},
"workspaces": [
"packages/*",
"packages/tests/*"
],
"devDependencies": {
"@types/chance": "^1.0.8",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chance": "^1.1.5",
"colors": "^1.4.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.1",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^9.5.0",
"pinst": "^2.1.6",
"prettier": "2.1.1",
"pretty-quick": "^3.1.0",
"syncpack": "^5.0.1",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "4.1.3"
},
"engines": {
"node": ">=12.0.0"
}
}