-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.73 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
{
"name": "@3fs/eslint-config",
"version": "3.0.0",
"description": "3fs ESLint Config",
"main": "index.mjs",
"scripts": {
"prettier:lint": "yarn prettier --check '**/*.{js,ts,html}'",
"prettier:fix": "yarn prettier:lint --write",
"eslint": "eslint --config ./configs/react-ts.mjs ./test.mjs",
"eslint:printRules": "eslint --config ./configs/react-ts.mjs --print-config ./test.mjs",
"eslint:generateSnapshots": "yarn eslint:printRules > ./snapshots/react-ts.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3fs/eslint-config.git"
},
"keywords": [],
"author": "Nace Logar <[email protected]> (https://thecodedestroyer.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/3fs/eslint-config/issues"
},
"homepage": "https://github.com/3fs/eslint-config#readme",
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.13.0",
"@stylistic/eslint-plugin-jsx": "^2.13.0",
"@stylistic/eslint-plugin-ts": "^2.13.0",
"eslint": "9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"peerDependencies": {
"@stylistic/eslint-plugin-js": ">=2.11.0",
"@stylistic/eslint-plugin-jsx": ">=2.11.0",
"@stylistic/eslint-plugin-ts": ">=2.11.0",
"eslint": ">=9.16.0",
"eslint-config-prettier": ">=9.1.0",
"eslint-plugin-import": ">=2.31.0",
"eslint-plugin-prettier": ">=5.2.1",
"eslint-plugin-react": ">=7.37.2",
"eslint-plugin-react-hooks": ">=5.1.0",
"typescript-eslint": ">=8.17.0"
}
}