-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1013 Bytes
/
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
{
"name": "eslint-config-clean-code",
"version": "8.0.0",
"description": "ESLint Configuration for Clean Typescript Code",
"main": "index.js",
"scripts": {
"fixStyleFull": "prettier \"**/*.{ts,tsx,js,jsx}\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wh1t3cAt1k/eslint-config-clean-code.git"
},
"keywords": [
"eslint",
"config",
"clean",
"code"
],
"author": "Pavel Kabir",
"license": "MIT",
"bugs": {
"url": "https://github.com/wh1t3cAt1k/eslint-config-clean-code/issues"
},
"homepage": "https://github.com/wh1t3cAt1k/eslint-config-clean-code#readme",
"devDependencies": {
"prettier": "2.8.3"
},
"peerDependencies": {
"typescript": ">=4.9.0",
"eslint": ">=7.0.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-react-hooks": "4.2.0"
}
}