-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "eslint-config-moneyforward",
"version": "5.0.1",
"description": "Money Forward's ESLint rules as an extensible shared config.",
"exports": {
"./flat": {
"import": "./configs/flat/index.mjs"
},
"./essentials": "./configs/eslintrc/essentials.js",
"./jsdoc": "./configs/eslintrc/jsdoc.js",
"./next": "./configs/eslintrc/next.js",
"./node": "./configs/eslintrc/node.js",
"./react": "./configs/eslintrc/react.js",
"./storybook": "./configs/eslintrc/storybook.js",
"./test/*": "./configs/eslintrc/test/*.js",
"./typescript": "./configs/eslintrc/typescript.js"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"files": [
"configs",
"rules"
],
"scripts": {
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/moneyforward/eslint-config-moneyforward.git"
},
"author": "Money Forward Engineers",
"license": "MIT",
"bugs": {
"url": "https://github.com/moneyforward/eslint-config-moneyforward/issues"
},
"homepage": "https://github.com/moneyforward/eslint-config-moneyforward#readme",
"dependencies": {
"@next/eslint-plugin-next": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"confusing-browser-globals": "^1.0.11",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-testing-library": "^7.0.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.11.0",
"typescript-eslint": "^8.16.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"semantic-release": "24.2.0",
"typescript": "5.7.2"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"jest": "*",
"typescript": "^4.8.4 || ^5.0.0"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"typescript": {
"optional": true
}
}
}