-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.67 KB
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
{
"name": "@bam.tech/eslint-plugin",
"version": "9.1.0",
"description": "eslint plugin for bam projects",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "BAM.tech",
"repository": "https://github.com/bamlab/react-native-project-config",
"homepage": "https://github.com/bamlab/react-native-project-config/blob/main/packages/eslint-plugin/README.md",
"main": "./dist/index.js",
"files": [
"dist",
"README.md"
],
"exports": "./dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "npm-run-all \"lint:*\"",
"lint:js": "eslint .",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs --check\"",
"test": "jest",
"update:eslint-docs": "eslint-doc-generator --config-emoji tests,🧪"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-eslint-plugin": "^6.4.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-react-native-a11y": "^3.5.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^7.13.1",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.0.0",
"prettier": "^3.6.2",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"eslint-define-config": "^2.0.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^10.0.0",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-doc-generator": "^3.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-eslint-plugin": "^7.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-react-native-a11y": "^3.5.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-testing-library": "^7.13.1",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^17.0.0",
"jest": "^30.0.0",
"npm-run-all2": "^8.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.19.1"
},
"engines": {
"node": ">= 18.0.0"
}
}