-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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
{
"name": "eslint-config-torchbox",
"version": "1.1.0",
"description": "Shareable ESLint config following Torchbox’s code style",
"license": "MIT",
"author": "Torchbox Ltd",
"repository": {
"type": "git",
"url": "https://github.com/torchbox/eslint-config-torchbox.git"
},
"bugs": {
"url": "https://github.com/torchbox/eslint-config-torchbox/issues"
},
"homepage": "https://github.com/torchbox/eslint-config-torchbox",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"torchbox"
],
"main": "./config.js",
"exports": {
".": "./config.js",
"./typescript": "./typescript.js"
},
"files": [
"config.js",
"typescript.js"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.9.0",
"eslint-config-airbnb": "19.0.2",
"eslint-config-prettier": "8.3.0",
"eslint-rule-documentation": "1.0.23",
"jest": "29.7.0",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"dependencies": {
"eslint-config-airbnb-base": "^15.0.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives . && prettier --check '**/?(.)*.{md,css,scss,js,ts,tsx,json,json5,yaml,yml,html}'",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,ts,tsx,json,json5,yaml,yml,html}'",
"build": "node src/documentation.js && prettier --write README.md",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "./.githooks/deploy.sh",
"prepublishOnly": "npm run build"
}
}