-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "eslint-config-smarthr",
"version": "7.2.0",
"description": "A sharable ESLint config for SmartHR",
"main": "index.js",
"scripts": {
"release:dryrun": "standard-version --dry-run",
"release": "standard-version",
"test": "jest",
"test:update-snapshot": "jest --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kufu/eslint-config-smarthr.git"
},
"keywords": [
"eslint"
],
"author": "SmartHR",
"license": "MIT",
"bugs": {
"url": "https://github.com/kufu/eslint-config-smarthr/issues"
},
"homepage": "https://github.com/kufu/eslint-config-smarthr#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@types/react": "^18.3.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"react": "^18.3.1",
"standard-version": "^9.3.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"react": "^16.8.6 || ^17.0.0 || ^18.0.0",
"typescript": "^3.4.5 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-smarthr": "^0.5.17"
}
}