-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@emerson-eps/eslint-config",
"version": "0.0.0-development",
"description": "Shared ESLint config for Emerson E&P Software",
"keywords": [
"eslint",
"eslintconfig",
"typescript"
],
"homepage": "https://github.com/emerson-eps/eslint-config",
"bugs": {
"url": "https://github.com/emerson-eps/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/emerson-eps/eslint-config.git"
},
"license": "MIT",
"main": "index.js",
"files": [
".eslintrc.js",
"index.js"
],
"scripts": {
"build": "npm run print-config:file && tsc",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix --max-warnings=0",
"lint:verbose": "eslint --max-warnings=0 -f stylish .",
"prettier:fix": "prettier . --write",
"print-config": "eslint --print-config .eslintrc.js",
"print-config:file": "eslint --print-config .eslintrc.js > config.json",
"semantic-release": "semantic-release",
"test": "prettier . --check && eslint . --max-warnings=0",
"tsc": "tsc"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@babel/eslint-parser": "^7.25.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.36.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.25.0"
},
"devDependencies": {
"@types/node": "^18.19.24",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"semantic-release": "^22.0.12",
"typescript": "^4.9.5"
},
"peerDependencies": {
"eslint": "^8.49.0",
"prettier": "^3.2.5",
"typescript": ">= 4.0"
},
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits"
},
"volta": {
"node": "18.20.3"
}
}