-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.98 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
{
"name": "@enormora/eslint-config-dev",
"private": true,
"type": "module",
"version": "0.0.0-dev",
"author": "Mathias Schreck <[email protected]>",
"contributors": [
"Christian Rackerseder <[email protected]>"
],
"scripts": {
"eslint:check": "eslint . --max-warnings 0",
"eslint:fix": "npm run eslint:check -- --fix",
"prettier": "prettier '**/*.(yml|yaml|json|md)'",
"prettier:check": "npm run prettier -- --check",
"prettier:fix": "npm run prettier -- --write",
"lint": "npm run eslint:check && npm run prettier:check",
"lint:fix-all": "npm run eslint:fix && npm run prettier:fix",
"test": "ava"
},
"license": "MIT",
"dependencies": {
"@cspell/eslint-plugin": "8.17.1",
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@stylistic/eslint-plugin": "2.12.1",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint-plugin-array-func": "5.0.2",
"eslint-plugin-ava": "15.0.1",
"eslint-plugin-destructuring": "2.2.1",
"eslint-plugin-functional": "7.2.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-no-secrets": "1.1.2",
"eslint-plugin-perfectionist": "4.4.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-sonarjs": "1.0.4",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@packtory/cli": "0.0.5",
"ava": "6.2.0",
"eslint": "9.17.0",
"prettier": "3.3.3",
"typescript": "5.7.2"
},
"repository": {
"type": "git",
"url": "git://github.com/enormora/eslint-config.git"
}
}