-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.37 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.37 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@etchteam/eslint-config",
"version": "0.0.1",
"description": "Etch's standard eslint config",
"type": "module",
"main": "src/index.mjs",
"exports": {
".": "./src/index.mjs",
"./base": "./src/base.mjs",
"./json": "./src/configs/json.mjs",
"./yaml": "./src/configs/yaml.mjs",
"./storybook": "./src/configs/storybook.mjs",
"./react": "./src/configs/react.mjs",
"./nodejs": "./src/configs/environments/nodejs.mjs",
"./nextjs": "./src/configs/environments/nextjs.mjs",
"./preact": "./src/configs/environments/preact.mjs",
"./angular": "./src/configs/environments/angular.mjs",
"./web-components": "./src/configs/environments/web-components.mjs",
"./webc": "./src/configs/environments/webc.mjs",
"./nestjs": "./src/configs/environments/nestjs.mjs",
"./package.json": "./package.json"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "semantic-release"
},
"engines": {
"node": "^20 || ^22 || ^24"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/etchteam/eslint.git"
},
"keywords": [
"eslint"
],
"author": "Etch <hey@etch.co>",
"license": "ISC",
"bugs": {
"url": "https://github.com/etchteam/eslint/issues"
},
"homepage": "https://github.com/etchteam/eslint#readme",
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@darraghor/eslint-plugin-nestjs-typed": "^7.1.27",
"@next/eslint-plugin-next": "^16.2.1",
"angular-eslint": "^21.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-lit": "^2.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.3.5",
"husky": "^9.0.11",
"lint-staged": "^17.0.2"
},
"dependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-unused-imports": "^4.1.3",
"eslint-plugin-yml": "^3.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
"globals": "^17.2.0",
"typescript-eslint": "^8.35.0"
},
"peerDependencies": {
"@darraghor/eslint-plugin-nestjs-typed": ">=7.0.0",
"@next/eslint-plugin-next": ">=15.0.0",
"angular-eslint": ">=19.0.0",
"eslint": ">=9.0.0",
"eslint-plugin-jsx-a11y": ">=6.0.0",
"eslint-plugin-lit": ">=2.0.0",
"eslint-plugin-react": ">=7.0.0",
"eslint-plugin-react-hooks": ">=5.0.0",
"eslint-plugin-storybook": ">=10.0.0",
"prettier": ">=3.0.0",
"typescript": ">=4.8.4"
},
"peerDependenciesMeta": {
"@darraghor/eslint-plugin-nestjs-typed": {
"optional": true
},
"@next/eslint-plugin-next": {
"optional": true
},
"angular-eslint": {
"optional": true
},
"eslint-plugin-jsx-a11y": {
"optional": true
},
"eslint-plugin-lit": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"eslint-plugin-storybook": {
"optional": true
},
"typescript": {
"optional": true
}
}
}