-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"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": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@sourcegraph/prettierrc": "^3.0.1",
"husky": "^3.0.2",
"prettier": "^1.18.2",
"semantic-release": "^15.13.19"
},
"dependencies": {
"@sourcegraph/tslint-config": "^13.4.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-ban": "^1.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.8.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1"
}
}