-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.39 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
{
"name": "@indonesiafurs/style-guide",
"version": "0.0.4",
"description": "🐞 | ESLint & Prettier style guides for various IF projects :3",
"keywords": [],
"homepage": "https://github.com/indonesiafurs/style-guide",
"repository": {
"type": "git",
"url": "git+https://github.com/indonesiafurs/style-guide.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"author": "Christopher Angelo <[email protected]>",
"main": "index.js",
"scripts": {
"find-new-rules": "npm-run-all --parallel find-new-rules:*",
"find-new-rules:jest": "eslint-find-rules --unused ./other/test/jest/index.js",
"find-new-rules:jsx-a11y": "eslint-find-rules --unused ./other/test/jsx-a11y/index.js",
"find-new-rules:main": "eslint-find-rules --unused ./index.js",
"find-new-rules:react": "eslint-find-rules --unused ./other/test/react/index.js",
"lint": "eslint --config index.js .",
"test": "npm-run-all --parallel lint find-new-rules",
"validate": "npm-run-all --parallel lint test"
},
"eslintConfig": {
"extends": "./index.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"dependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint-config-prettier": "^8.6.0",
"eslint-define-config": "^1.23.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.0",
"eslint-plugin-vue": "^9.17.0",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.8",
"vue-eslint-parser": "^9.3.1"
},
"devDependencies": {
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"eslint": "^8.32.0",
"eslint-find-rules": "^4.1.0",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"prettier": "2.8.3",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"eslint": "^8.0.0",
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=18 || >=20",
"pnpm": ">=8.0.0",
"npm": ">=6",
"yarn": ">=1"
}
}