-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
57
58
59
60
61
{
"name": "@api3/eslint-plugin-commons",
"version": "3.0.0",
"keywords": [
"eslint",
"eslint-plugin"
],
"license": "MIT",
"engines": {
"node": ">=18.14.0"
},
"packageManager": "[email protected]",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/api3dao/eslint-plugin-commons"
},
"main": "index.js",
"files": [
"index.js",
"src/"
],
"scripts": {
"eslint:check": "eslint --report-unused-disable-directives --cache --ext js,ts,tsx,jsx . --max-warnings 0",
"eslint:fix": "pnpm run eslint:check --fix",
"prepare": "husky",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json}\"",
"prettier:fix": "prettier --write \"./**/*.{js,ts,md,json}\"",
"release:tag": "node scripts/tag-and-release.js"
},
"dependencies": {
"@shopify/eslint-plugin": "^47.0.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint-config-next": "^15.1.7",
"eslint-plugin-check-file": "^3.0.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-functional": "^6.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@api3/commons": "0.13.4",
"@types/lodash": "^4.17.15",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"prettier": "^3.5.0"
},
"peerDependencies": {
"eslint": "^8.57.1"
}
}