-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.96 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
{
"name": "mango-scripts-monorepo",
"version": "1.0.0",
"private": true,
"description": "一些便捷的前端开发 Node.js 工具包",
"homepage": "https://github.com/AlbertLin0923/mango-scripts",
"bugs": {
"url": "https://github.com/AlbertLin0923/mango-scripts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertLin0923/mango-scripts"
},
"license": "MIT",
"author": "AlbertLin0923",
"scripts": {
"release": "dev-scripts releasePackage",
"dev": "tsx scripts/dev.mts",
"build": "pnpm -r --filter './packages/**' run build",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm run lint:eslint && pnpm run lint:stylelint && pnpm run lint:prettier",
"lint-staged": "lint-staged",
"lint:eslint": "eslint ./ --fix --color",
"lint:prettier": "prettier ./ --write --check",
"lint:stylelint": "stylelint \"**/*.{less,scss,sass,stylus,styl,css}\" --fix",
"test-unit": "vitest run",
"coverage": "vitest run --coverage",
"cz": "git add . && git cz",
"re": "dev-scripts releasePackage"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@mango-scripts/dev-scripts": "2.0.10",
"@mango-scripts/esp-config": "^2.0.8",
"@mango-scripts/utils": "^2.0.6",
"@types/node": "^20.10.5",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@vitest/coverage-v8": "^1.0.2",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^16.0.2",
"tsup": "^8.0.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitest": "^1.0.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"volta": {
"node": "20.16.0",
"pnpm": "9.6.0"
}
}