This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.34 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
{
"name": "blizzard-client",
"private": true,
"scripts": {
"bazel:format": "buildifier -v --warnings=attr-cfg,attr-license,attr-non-empty,attr-output-default,attr-single-file,constant-glob,ctx-args,depset-iteration,depset-union,dict-concatenation,duplicated-name,filetype,git-repository,http-archive,integer-division,load,load-on-top,native-build,native-package,output-group,package-name,package-on-top,positional-args,redefined-variable,repository-name,same-origin-load,string-iteration,unused-variable",
"bazel:format:all": "find . -type f \\( -name \"*.bzl\" -or -name WORKSPACE -or -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs buildifier -v --warnings=attr-cfg,attr-license,attr-non-empty,attr-output-default,attr-single-file,constant-glob,ctx-args,depset-iteration,depset-union,dict-concatenation,duplicated-name,filetype,git-repository,http-archive,integer-division,load,load-on-top,native-build,native-package,output-group,package-name,package-on-top,positional-args,redefined-variable,repository-name,same-origin-load,string-iteration,unused-variable",
"bazel:lint": "yarn bazel:format:all --lint=warn",
"bazel:lint-fix": "yarn bazel:format:all --lint=fix",
"prettier-check": "prettier --check src/**/*.{json,scss,html,yaml,yml}",
"eslint-check": "eslint src/**/*.{ts,js}",
"postinstall": "patch-package"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"tslib": "1.11.0",
"axios": "0.18.0",
"@bazel/bazelisk": "1.3.0",
"@commitlint/config-conventional": "8.3.3",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"typescript": "3.8.2",
"husky": "4.0.6",
"lint-staged": "9.5.0",
"patch-package": "6.2.0",
"@bazel/typescript": "1.1.0",
"@bazel/buildifier": "0.29.0",
"@commitlint/cli": "8.3.3",
"@types/jasmine": "3.5.0",
"prettier": "1.19.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"cz-conventional-changelog": "3.0.2",
"commitizen": "4.0.3",
"@types/node": "13.7.4"
}
}