-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "^45.0.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint-config-next": "^14.2.16",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-functional": "^6.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"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.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@api3/commons": "0.13.3",
"@types/lodash": "^4.17.13",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"prettier": "^3.3.3"
},
"peerDependencies": {
"eslint": "^8.57.1"
}
}