-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "@sourcegraph/eslint-config",
"description": "Shared ESLint config for Sourcegraph projects",
"version": "0.0.0-DEVELOPMENT",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/eslint-config.git"
},
"files": [
".eslintrc.js"
],
"main": ".eslintrc.js",
"scripts": {
"semantic-release": "semantic-release",
"prettier": "prettier '**/*.{js?(on),ts?(x),scss,md,yml}' --write --list-different",
"prettier-check": "npm run prettier -- --write=false"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"husky": "^4.3.5",
"prettier": "^2.4.1",
"semantic-release": "^17.1.2"
},
"dependencies": {
"@sourcegraph/prettierrc": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ban": "^1.4.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-unicorn": "^48.0.0",
"eslint-plugin-unused-imports": "^3.0.0"
}
}