-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "@gone-skiing/eslint-config",
"version": "0.2.10",
"description": "Example of shared eslint and prettier configs",
"author": "Eugene Krylov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gone-skiing/eslint-config"
},
"main": "index.js",
"files": [
"index.js",
"prettier-config.js"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@typescript-eslint/parser": "^2.34.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.5",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-unicorn": "19.0.1",
"husky": "5.1.3",
"minimist": "1.2.5",
"prettier": "2.2.1",
"typescript": "4.2.4"
},
"devDependencies": {
"json-schema": "^0.3.0",
"standard-version": "9.2.0"
},
"scripts": {
"check": "npm run check:eslint && npm run check:prettier",
"fix": "npm run fix:eslint && npm run fix:prettier",
"check:prettier": "prettier --check '**/*.js'",
"fix:prettier": "prettier --write '**/*.js'",
"check:eslint": "eslint .",
"fix:eslint": "eslint . --fix",
"release": "standard-version && git push --follow-tags"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@OWNER"
},
"husky": {
"hooks": {
"pre-push": "npm run check"
}
}
}