-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.89 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
78
{
"name": "eslint-config-blvd",
"version": "1.2.1",
"description": "An ESLint config that conforms to the blvd JavaScript/TypeScript styleguide.",
"main": "index.js",
"files": [
"index.js",
"react.js",
"rules"
],
"repository": {
"type": "git",
"url": "git://github.com/blvdgroup/tslint-config-blvd.git"
},
"keywords": [
"eslint",
"config",
"eslint-config",
"standard",
"standardjs",
"javascript",
"js",
"typescript",
"ts"
],
"author": "the blvd group <the@blvd.space>",
"contributors": [
{
"name": "Resi Respati",
"url": "https://resir014.xyz",
"email": "resir014@blvd.space"
}
],
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"validate": "yarn lint"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~4.9.0",
"@typescript-eslint/parser": "~4.9.0",
"eslint-config-airbnb": "~18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0"
},
"peerDependencies": {
"eslint": "^6.1.0 || ^7.0.0",
"eslint-import-resolver-typescript": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.10",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"typescript": "4.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}