-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "eslint-config-tip",
"description": "An opinionated ESLint config with rules for typescript, imports and prettier.",
"version": "1.0.3",
"keywords": [
"eslint",
"eslintconfig"
],
"homepage": "https://github.com/ijxy/eslint-config-tip",
"bugs": {
"url": "https://github.com/ijxy/eslint-config-tip/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ijxy/eslint-config-tip.git"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"typescript.js",
"import.js",
"prettier.js"
],
"scripts": {
"lint": "eslint . --ext .js,.json --fix"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
},
"peerDependencies": {
"@types/eslint": ">=8.0.0",
"eslint": ">=8.0.0"
}
}