-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "eslint-config-godaddy-react-typescript",
"version": "5.0.0",
"description": "ESLint config for consistent style in ES6 React projects using TypeScript at GoDaddy.",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run --silent lint",
"test": "echo ok",
"clean": "rimraf node_modules"
},
"repository": {
"type": "git",
"url": "git@github.com:godaddy/javascript.git",
"directory": "packages/eslint-config-godaddy-react-typescript"
},
"keywords": [
"godaddy",
"javascript",
"styleguide",
"style-guide",
"eslint",
"eslint-config",
"react",
"typescript"
],
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint-config-godaddy-react": "^10.0.0",
"eslint-plugin-react-hooks": "^5.2.0"
},
"peerDependencies": {
"eslint": "^9",
"typescript": ">=5"
},
"devDependencies": {
"eslint": "^9.24.0"
},
"exports": {
".": "./index.js"
}
}