-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.13 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
{
"name": "easy-alioss",
"version": "1.0.0",
"description": "A plugin to upload assets to aliyun oss",
"author": "MichaelJier <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lerna:bs": "lerna bootstrap",
"lerna:clean": "lerna clean && git clean -fdx node_modules",
"lerna:list": "lerna list",
"commit": "git add -A && git-cz",
"build": "lerna run build",
"build:core": "lerna exec 'rollup -c' --scope @easy-alioss/core",
"build:webpack-plugin": "lerna exec 'rollup -c' --scope @easy-alioss/webpack-plugin",
"build:vite-plugin": "lerna exec 'rollup -c' --scope @easy-alioss/vite-plugin",
"build:core:watch": "lerna exec 'rollup -c --watch' --scope @easy-alioss/core",
"build:webpack-plugin:watch": "lerna exec 'rollup -c --watch' --scope @easy-alioss/webpack-plugin",
"build:vite-plugin:watch": "lerna exec 'rollup -c --watch' --scope @easy-alioss/vite-plugin"
},
"engines": {
"node": "^14.18.0 || >=16.0.0",
"pnpm": ">=6"
},
"devDependencies": {
"husky": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"babel-jest": "^29.1.0",
"@types/jest": "^29.5.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"validate-commit-msg": "^2.14.0",
"cz-customizable": "^6.3.0",
"cz-lerna-changelog": "^2.0.3",
"commitlint-config-cz": "^0.13.3",
"@types/node": "^18.11.12",
"@types/prompts": "^2.4.2",
"eslint": "^8.29.0",
"eslint-define-config": "^1.12.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-prettier": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@babel/eslint-parser": "^7.22.15",
"pnpm": "^7.18.1",
"prettier": "^2.8.1",
"typescript": "^4.9.4",
"commitizen": "4.2.4",
"lerna": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": "yarn prettier"
},
"workspaces": [
"packages/*"
]
}