-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.18 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
88
89
{
"name": "k8test-root",
"private": true,
"version": "1.0.0",
"license": "UNLICENSED",
"scripts": {
"lint:code": "eslint --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",
"pretest": "eval $(minikube docker-env --shell sh) && yarn && yarn build && yarn workspace simple-service build:docker && yarn delete-k8test-resources && yarn workspace k8test-monitoring build:docker",
"test": "jest --no-cache # ts-jest cache sometimes isn't invalidated",
"clean": "yarn workspace scripts clean",
"delete-k8test-resources": "yarn workspace scripts delete-k8test-resources",
"start-k8test-monitoring": "yarn workspace scripts start-k8test-monitoring",
"run-ci-pr": "yarn workspace scripts run-ci-pr",
"run-ci-master": "yarn workspace scripts run-ci-master",
"build": "yarn tsc -b tsconfig-build.json && chmod +x packages/core/dist/src/index.js && chmod +x packages/scripts/dist/src/index.js",
"build:dockers": "yarn build && eval $(minikube docker-env --shell sh) && yarn workspace simple-service build:docker && yarn workspace k8test-monitoring build:docker"
},
"repository": {
"url": "https://github.com/stavalfi/k8test"
},
"workspaces": [
"packages/*",
"packages/tests/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint:staged-files"
}
},
"devDependencies": {
"@types/chance": "^1.0.8",
"@types/ci-info": "^2.0.0",
"@types/debug": "^4.1.5",
"@types/express": "~4.0.0",
"@types/find-project-root": "^1.1.0",
"@types/fs-extra": "^8.0.1",
"@types/git-url-parse": "^9.0.0",
"@types/ioredis": "^4.16.2",
"@types/ip-address": "^5.8.2",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.149",
"@types/node": "^14.0.13",
"@types/semver": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"bufferutil": "^4.0.1",
"chance": "^1.1.5",
"ci-info": "^2.0.0",
"create-folder-structure": "^3.0.5",
"deepmerge": "^4.2.2",
"electron": "^9.0.5",
"esbuild": "^0.5.12",
"eslint": "6.5.1",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-no-floating-promise": "https://github.com/SebastienGllmt/eslint-plugin-no-floating-promise",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-spellcheck": "^0.0.17",
"execa": "^4.0.1",
"fast-glob": "^3.2.2",
"fs-extra": "^9.0.0",
"gitignore-globs": "^0.1.1",
"glob-gitignore": "^1.0.14",
"globby": "^11.0.0",
"husky": "^4.2.5",
"ignore": "^5.1.4",
"ioredis": "^4.17.1",
"jest": "^26.1.0",
"lint-staged": "^9.5.0",
"node-git-server": "^0.6.1",
"npm-login-noninteractive": "^0.1.4",
"package-json-type": "^1.0.3",
"pkg": "^4.4.2",
"prettier": "^1.18.0",
"pretty-quick": "^1.11.0",
"semver": "^7.3.2",
"syncpack": "^5.0.1",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.1",
"typescript": "^3.7.5",
"utf-8-validate": "^5.0.2"
},
"engines": {
"node": ">=12.0.0"
}
}