-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
72
73
74
75
76
{
"name": "eslint-config-rascal",
"version": "0.2.4",
"description": "RascalCoder's eslint config presets with prettier",
"author": {
"name": "Rascal-Coder",
"email": "[email protected]",
"url": "https://github.com/Rascal-Coder"
},
"license": "MIT",
"homepage": "https://github.com/Rascal-Coder",
"repository": {
"url": "https://github.com/Rascal-Coder/eslint-config.git"
},
"bugs": {
"url": "https://github.com/Rascal-Coder/eslint-config/issues"
},
"files": [
"lib"
],
"exports": {
".": "./lib/index.js",
"./vue": "./lib/configs/vue.js",
"./vue2": "./lib/configs/vue2.js",
"./react": "./lib/configs/react.js"
},
"scripts": {
"lint": "eslint . --fix",
"format": "ras prettier-format",
"commit": "ras git-commit",
"cleanup": "ras cleanup",
"update-pkg": "ras update-pkg",
"init-git": "ras init-git-hooks",
"tsx": "tsx",
"update-version": "bumpp --commit --push --tag",
"publish-pkg": "pnpm -r publish --access public",
"release": "pnpm update-version && pnpm publish-pkg"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsonc": "2.10.0",
"eslint-plugin-n": "16.2.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-vue": "9.17.0",
"prettier": "3.0.3"
},
"devDependencies": {
"@rascaljs/cli": "0.4.0",
"@types/eslint": "8.44.6",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"bumpp": "9.2.0",
"eslint": "8.52.0",
"eslint-plugin-rascal": "link:",
"react": "18.2.0",
"react-dom": "18.2.0",
"simple-git-hooks": "2.9.0",
"typescript": "5.2.2",
"vue": "3.3.6"
},
"peerDependencies": {
"eslint": ">=7.4.0",
"typescript": ">=4.8.0"
},
"simple-git-hooks": {
"commit-msg": "pnpm ras git-commit-verify",
"pre-commit": "pnpm lint && ras lint-staged"
}
}