-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.94 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
{
"name": "@alkafinance/eslint-config-monorepo",
"private": true,
"homepage": "https://github.com/alkafinance/eslint-config#readme",
"bugs": {
"url": "https://github.com/alkafinance/eslint-config/issues"
},
"license": "MIT",
"author": "Ayan Yenbekbay <ayan@alka.app>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/alkafinance/eslint-config.git"
},
"engines": {
"node": ">=6.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --ext .js,.ts --cache .",
"find-new-rules": "wsrun --fast-exit find-new-rules",
"prettier-check": "eslint --print-config packages/eslint-config/index.js | eslint-config-prettier-check",
"test": "run-p --silent --print-label lint find-new-rules prettier-check",
"semantic-release": "wsrun --serial semantic-release"
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": true,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e",
"pre-push": "yarn test"
}
},
"lint-staged": {
"**/*.js": [
"eslint --ext .js,.ts,.tsx --cache --fix",
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@alkafinance/eslint-config": "0.0.0-development",
"@alkafinance/eslint-config-typescript": "0.0.0-development",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"eslint": "^6.8.0",
"eslint-find-rules": "^3.4.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"semantic-release": "17.0.2",
"semantic-release-monorepo": "7.0.1",
"typescript": "^3.8.3",
"wsrun": "^5.2.0"
},
"dependencies": {}
}