-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.98 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
{
"private": true,
"workspaces": [
"job",
"merge-confidence",
"task",
"core"
],
"scripts": {
"clean:dist": "rm -rf ./dist/*",
"compile": "run-s compile:*",
"compile:merge-confidence": "tsc -b ./merge-confidence/tsconfig.mc.json",
"compile:task": "tsc -b ./task/tsconfig.task.json",
"compile:worker": "tsc -b ./job/tsconfig.job.json",
"compile:core": "tsc -b ./core/tsconfig.core.json",
"debug:merge-confidence": "cd merge-confidence && node --inspect-brk -r ts-node/register/transpile-only -- ./merge-confidence/lib/index.ts",
"debug:task": "cd task && node --inspect-brk -r ts-node/register/transpile-only -- ./task/lib/index.ts",
"debug:worker": "cd job && node --inspect-brk -r ts-node/register/transpile-only -- ./job/lib/index.ts",
"eslint": "eslint . --cache --report-unused-disable-directives",
"eslint-fix": "eslint --cache --fix . --report-unused-disable-directives",
"jest": "cross-env LOG_LEVEL=fatal jest --logHeapUsage",
"lint": "run-s ls-lint eslint prettier",
"lint-fix": "run-s eslint-fix prettier-fix",
"ls-lint": "ls-lint",
"prepare:husky": "cd .. && husky install renovate/.husky",
"prettier": "prettier --cache --check \"**/*.{ts,js,mjs,json,md,yml}\"",
"prettier-fix": "prettier --write --cache \"**/*.{ts,js,mjs,json,md,yml}\"",
"start-ts:merge-confidence": "cd merge-confidence && node -r ts-node/register/transpile-only -- ./lib/index.ts",
"start-ts:task": "cd task && node -r ts-node/register/transpile-only -- ./lib/index.ts",
"start-ts:worker": "cd job && node -r ts-node/register/transpile-only -- ./lib/index.ts",
"type-strict-check": "tsc -p tsconfig.strict.json --noEmit",
"test": "run-s lint type-strict-check"
},
"dependencies": {
"renovate": "34.152.2"
},
"devDependencies": {
"@jest/globals": "29.3.1",
"@jest/reporters": "29.3.1",
"@jest/test-result": "29.3.1",
"@ls-lint/ls-lint": "1.11.2",
"@renovate/eslint-plugin": "https://github.com/renovatebot/eslint-plugin#v0.0.5",
"@types/eslint": "8.21.0",
"@types/jest": "29.2.4",
"@types/node": "16.18.12",
"@types/shelljs": "0.8.11",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"cross-env": "7.0.3",
"eslint": "8.33.0",
"eslint-config-prettier": "8.5.0",
"eslint-formatter-gha": "1.4.1",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-typescript-enum": "2.1.0",
"expect-more-jest": "5.4.1",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-extended": "3.2.0",
"jest-junit": "15.0.0",
"jest-mock-extended": "3.0.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"shelljs": "0.8.5",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "4.8.4"
}
}