-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.93 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
{
"name": "@yutengjing/eslint-config-monorepo",
"version": "1.3.0",
"private": true,
"packageManager": "[email protected]",
"author": {
"name": "YuTengjing",
"url": "https://github.com/tjx666",
"email": "[email protected]"
},
"license": "MIT",
"eslintConfig": {
"extends": [
"plugin:eslint-plugin/recommended",
"@yutengjing/eslint-config-typescript"
],
"ignorePatterns": [
"fixtures"
],
"rules": {
"jsdoc/no-undefined-types": 0,
"@typescript-eslint/no-require-imports": 0
}
},
"prettier": "@yutengjing/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "rm -rf node_modules && pnpm -r --parallel exec rm -rf node_modules",
"reinstall": "rm -f pnpm-lock.yaml && pnpm clean && pnpm install",
"test": "pnpm -r test",
"release": "bumpp -c \"release: v%s\" package.json packages/*/package.json && pnpm -r publish"
},
"devDependencies": {
"@types/eslint": "^8.56.12",
"@types/node": "22.8.6",
"@yutengjing/eslint-config-react": "workspace:*",
"@yutengjing/eslint-config-typescript": "workspace:*",
"@yutengjing/eslint-config-vue": "workspace:*",
"@yutengjing/eslint-plugin": "workspace:*",
"@yutengjing/prettier-config": "^1.3.0",
"@yutengjing/tsconfig-node-commonjs": "^0.0.5",
"bumpp": "^9.8.0",
"eslint": "^8.57.1",
"eslint-plugin-eslint-plugin": "^6.3.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}