forked from foxglove/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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
{
"name": "@lichtblick/eslint-plugin",
"version": "1.0.3",
"description": "Lichtblick ESLint rules and configuration",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lichtblick-Suite/eslint-plugin.git"
},
"main": "index.js",
"files": [
"**/*.js"
],
"scripts": {
"test": "jest",
"tsc": "tsc",
"lint": "npm run lint:base && npm run lint:jest && npm run lint:react",
"lint:base": "eslint --report-unused-disable-directives .",
"lint:jest": "eslint --report-unused-disable-directives --config ./configs/jest.js .",
"lint:react": "eslint --report-unused-disable-directives --config ./configs/react.js .",
"prettier": "prettier"
},
"dependencies": {
"@typescript-eslint/utils": "^6",
"tsutils": "^3",
"typescript": "^4 || ^5"
},
"peerDependencies": {
"eslint": "^7 || ^8",
"eslint-config-prettier": "^8 || ^9",
"eslint-plugin-es": "^4",
"eslint-plugin-filenames": "^1",
"eslint-plugin-import": "^2",
"eslint-plugin-prettier": "^5",
"prettier": "^3"
},
"devDependencies": {
"@lichtblick/eslint-plugin": "file:.",
"@lichtblick/tsconfig": "1.0.0",
"@types/jest": "29.5.3",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"@typescript-eslint/rule-tester": "6.1.0",
"eslint": "8.45.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.6.1",
"ts-jest": "29.1.1"
},
"prettier": {
"trailingComma": "es5"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}