-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "eslint-config-uphold-react",
"version": "2.5.0",
"description": "Uphold-flavored React ESLint config",
"keywords": [
"config",
"eslint",
"lint",
"shared"
],
"homepage": "https://github.com/uphold/eslint-config-uphold-react#readme",
"bugs": {
"url": "https://github.com/uphold/eslint-config-uphold-react/issues"
},
"license": "MIT",
"author": "Uphold",
"main": "src",
"repository": "uphold/eslint-config-uphold-react",
"scripts": {
"changelog": "github-changelog-generator --future-release=v$npm_config_future_release > CHANGELOG.md",
"lint": "eslint --config src/index.js src/index.js test/rules.test.js",
"unit-test": "jest",
"prepublishOnly": "yarn run test",
"preversion": "yarn run test",
"test": "yarn run lint && yarn run unit-test",
"version": "npm run changelog --future-release=$npm_package_version && git add -A CHANGELOG.md"
},
"dependencies": {
"@babel/core": "7.24.7",
"@babel/eslint-parser": "7.24.7",
"@babel/preset-react": "7.24.7",
"eslint-config-uphold": "6.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-sort-class-members": "1.20.0"
},
"devDependencies": {
"@uphold/github-changelog-generator": "3.4.0",
"eslint": "~8.57.0",
"jest": "29.7.0",
"pre-commit": "1.2.2",
"prettier": "~3.3.2",
"react": "~18.2.0"
},
"pre-commit": [
"test"
],
"peerDependencies": {
"eslint": "~8.57.0"
},
"engines": {
"node": ">=16"
}
}