-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 3.62 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
89
90
91
92
93
94
95
96
97
98
{
"name": "root",
"private": true,
"version": "2.4.0",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap -- --hoist",
"playground:dev": "lerna run --scope playground dev",
"playground:genIconsList": "lerna run --scope playground genIconsList",
"packages-manual-bump-version": "lerna version --no-push --no-private",
"packages-bump-version": "lerna version --conventional-commits --no-push --no-private --yes",
"buildUtils": "gulp buildUtils",
"buildHeadless": "gulp buildHeadless",
"buildTypes": "gulp buildTypes",
"buildBatch": "gulp buildBatch",
"publish:package": "lerna publish from-package --yes",
"build-publish": "yarn buildBatch && yarn publish:package",
"release-it:dry-run": "release-it --dry-run",
"manual-create-release": "cross-env MANUAL_LERNA_VERSION=1 release-it --only-version",
"create-release": "release-it --ci",
"test-compiler-sfc": "node -r sucrase/register test/compiler-sfc/test-compiler-sfc.js",
"test-run-esm": "node -r sucrase/register scripts/run-esm.js",
"lint": "eslint packages --cache --ext .js,.mjs,.jsx,.ts,.tsx,.vue",
"lint-fix": "eslint packages --cache --fix --ext .js,.mjs,.jsx,.ts,.tsx,.vue",
"lint-style": "stylelint packages/**/src/**/*.{vue,css,less} --cache",
"lint-style-fix": "stylelint packages/**/src/**/*.{vue,css,less} --cache --fix",
"prepare": "husky install",
"reset-soft": "git reset --soft HEAD~1",
"sync-remote-tags": "git tag -l | xargs git tag -d && git pull --tags"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@release-it/conventional-changelog": "^5.1.1",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.0",
"@rollup/plugin-typescript": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"commitizen": "^4.2.6",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.8.0",
"fast-glob": "^3.2.12",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"hash-sum": "^2.0.0",
"husky": "^8.0.0",
"lerna": "^5.3.0",
"less": "^4.1.3",
"lint-staged": "^13.1.0",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"release-it": "^15.5.1",
"rollup-plugin-dts": "^5.0.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-less": "^1.0.6",
"stylelint-prettier": "^2.0.0",
"sucrase": "^3.29.0",
"typescript": "^4.7.2",
"vue": "^3.2.47",
"vue-eslint-parser": "^9.1.0"
},
"engines": {
"npm": "We recommend installing dependencies with yarn",
"yarn": ">=1.22.0 < 2.0.0",
"node": ">=14.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}