-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.22 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.22 KB
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
{
"name": "mango-kit-monorepo",
"version": "0.0.1",
"private": true,
"description": "前端开发工具包",
"homepage": "https://github.com/AlbertLin0923/mango-kit",
"bugs": {
"url": "https://github.com/AlbertLin0923/mango-kit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertLin0923/mango-kit"
},
"license": "MIT",
"author": "AlbertLin0923",
"scripts": {
"release": "dev-scripts releasePackage",
"dev": "pnpm -r --filter './packages/**' run dev",
"build": "pnpm -r --filter './packages/**' run build",
"docs:dev": "dumi dev",
"docs:build": "pnpm run build && dumi build",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm run lint:eslint && pnpm run lint:stylelint && pnpm run lint:prettier",
"lint:eslint": "eslint ./ --fix --color",
"lint:prettier": "prettier ./ --write --check",
"lint:stylelint": "stylelint \"**/*.{less,scss,sass,stylus,styl,css}\" --fix",
"lint-staged": "lint-staged",
"test-unit": "vitest run",
"coverage": "vitest run --coverage",
"cz": "git add . && git cz",
"clean": "rimraf node_modules/.cache && pnpm -r --filter './packages/**' run clean"
},
"dependencies": {
"mockjs": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@mango-scripts/dev-scripts": "^2.0.8",
"@mango-scripts/esp-config": "^2.0.8",
"@types/lodash-es": "^4.17.12",
"@types/mockjs": "^1.0.10",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.17",
"@vitest/coverage-v8": "^1.1.1",
"antd": "^5.12.6",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"dumi": "^2.2.14",
"eslint": "^8.56.0",
"father": "^4.3.7",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.1",
"stylelint": "^16.1.0",
"tsx": "^4.6.2",
"typescript": "^5.3.2",
"vitest": "^1.1.1"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"volta": {
"node": "20.16.0",
"pnpm": "9.6.0"
}
}