-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 973 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 973 Bytes
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
{
"name": "xo-quick",
"version": "0.0.10",
"description": "Setup javascript Formatting and Linting",
"repository": "osdevisnot/xo-quick",
"license": "MIT",
"author": "osdevisnot <osdevisnot@gmail.com>",
"scripts": {
"postinstall": "node ./xo-quick.js"
},
"husky": {
"hooks": {
"pre-commit": "xo --fix"
}
},
"xo": {
"extends": "xo-react",
"prettier": true
},
"prettier": {
"printWidth": 123,
"semi": false,
"singleQuote": true,
"useTabs": true
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-xo": "^0.41.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.51.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"prettier-plugin-packagejson": "^2.2.18",
"sort-package-json": "^1.57.0"
},
"peerDependencies": {
"xo": "*"
}
}