-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 947 Bytes
/
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
{
"name": "@jsimck/eslint-config",
"version": "1.1.1",
"description": "Very opinionated eslint config I use on my projects, includes: prettier, TS, jest, sonarqube and plugin-unicorn. It uses new eslint flat config.",
"type": "module",
"main": "./index.js",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"eslint": "^8.35.0"
},
"scripts": {
"release": "changeset publish",
"changeset": "changeset add",
"lint": "eslint './**/*.{js,ts,jsx,tsx,cjs,mjs}'"
},
"peerDependencies": {
"eslint": ">=8"
},
"dependencies": {
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.4"
}
}