-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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": "@hollowverse/config",
"version": "0.0.0-Set-by-CI-when-publishing",
"description": "Common configurations for Hollowverse repos",
"repository": "https://github.com/hollowverse/config",
"license": "Unlicense",
"publishConfig": {
"access": "public"
},
"scripts": {
"validate-filenames": "validate-filenames",
"lint-staged": "lint-staged",
"test": "yarn common-check",
"build": "exit 0",
"set-version": "set-version",
"clown": "clown",
"pre-push": "yarn common-check",
"pre-commit": "yarn common-check",
"common-check": "run-p -c --aggregate-output check-prettier validate-filenames 'clown check' check-integrity",
"commitlint": "commitlint -e $GIT_PARAMS",
"semantic-release": "semantic-release",
"check-integrity": "yarn check --integrity",
"check-prettier": "prettier './**/*.{t,j}s{,x}' '**/*.{css,scss,json,md}' --list-different"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all -s lint-staged -p -c --aggregate-output pre-commit",
"pre-push": "yarn pre-push",
"post-merge": "yarnhook",
"post-checkout": "yarnhook",
"post-rewrite": "yarnhook",
"commit-msg": "yarn commitlint"
}
},
"lint-staged": {
"**/*.{j,t}s{x,}": [
"prettier --write",
"git add"
],
"**/*.md": [
"prettier --write",
"git add"
],
"**/*.json": [
"prettier --write",
"git add"
],
"**/*.js{x,}": [
"eslint -c .eslintrc.json --no-eslintrc"
]
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@hollowverse/clown": "^3.1.1",
"@hollowverse/validate-filenames": "^3.0.2",
"babel-eslint": "^9.0.0",
"del-cli": "^1.1.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-typescript": "^0.11.0",
"husky": "^1.0.0-rc.1",
"lint-staged": "^7.2.2",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"semantic-release": "^15.1.5",
"yarnhook": "^0.3.0"
},
"engines": {
"node": ">= 6.10"
},
"private": false
}