-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "fbi-lint",
"version": "0.0.6",
"description": "",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prettier": "prettier -c --write \"**/*.{js,md}\"",
"release": "standard-version"
},
"homepage": "https://github.com/fbi-js/fbi-lint",
"repository": "https://github.com/fbi-js/fbi-lint.git",
"author": "fbi",
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,md}": "npm run prettier",
"*": "git add "
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-vue": "^7.0.0-beta.2",
"prettier": "^2.0.5",
"stylelint": "13.7.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.1.0",
"typescript": "^3.9.7",
"vue-eslint-parser": "^7.1.0"
},
"devDependencies": {
"standard-version": "^9.0.0",
"yorkie": "^2.0.0",
"lint-staged": "^10.4.0"
}
}