forked from wmzy/tools-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 990 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 990 Bytes
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
{
"name": "tools-config",
"version": "0.2.3",
"description": "config for eslint, prettier, typescript and others",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "wmzy",
"license": "ISC",
"files": [
"config"
],
"exports": {
"./eslint": "./config/eslint/index.mjs",
"./stylelint": "./config/stylelint",
"./prettier": "./config/prettier.json",
"./typescript": "./config/typescript/tsconfig.json"
},
"dependencies": {
"@eslint/js": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"stylelint-prettier": "^5.0.2",
"typescript-eslint": "^8.18.2"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"typescript": "^5.7.2"
}
}