-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
88 lines (88 loc) · 2.25 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "monkey-monorepo",
"type": "module",
"private": true,
"scripts": {
"postinstall": "simple-git-hooks",
"format": "prettier --cache --write --ignore-unknown .",
"lint": "eslint --cache --fix .",
"build": "pnpm -r --filter=./packages/* build",
"build:playground": "pnpm -r --filter=./playground/* build",
"ci-publish": "tsx scripts/publishCI.ts"
},
"dependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/types": "19.5.0",
"@eslint/js": "9.16.0",
"@types/cross-spawn": "6.0.6",
"@types/fs-extra": "11.0.4",
"@types/minimist": "1.2.5",
"@types/node": "22.10.2",
"@types/prompts": "2.4.9",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@types/semver": "7.5.8",
"@vitejs/plugin-legacy": "6.0.0",
"@vitejs/plugin-react": "4.3.4",
"@vitejs/plugin-vue": "5.2.1",
"acorn": "8.14.0",
"acorn-walk": "8.3.4",
"element-plus": "2.9.1",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-unused-imports": "4.1.4",
"execa": "9.5.2",
"fs-extra": "11.2.0",
"lint-staged": "15.2.11",
"magic-string": "0.30.15",
"minimist": "1.2.8",
"picocolors": "1.1.1",
"pinia": "2.3.0",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"semver": "7.6.3",
"simple-git-hooks": "2.11.1",
"solid-js": "1.9.3",
"terser": "5.37.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"unimport": "3.14.5",
"unocss": "0.65.1",
"unplugin-auto-import": "0.19.0",
"vite": "6.0.3",
"vite-plugin-solid": "2.11.0",
"vue": "3.5.13"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
]
}
},
"lint-staged": {
"*.{js,cjs,mjs,ts}": [
"eslint --cache --fix",
"prettier --cache --write"
],
"*.{json,jsx,tsx,vue}": [
"prettier --cache --write"
]
},
"volta": {
"node": "20.18.1",
"pnpm": "9.15.0"
},
"packageManager": "[email protected]"
}