-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
108 lines (108 loc) · 4.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
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
99
100
101
102
103
104
105
106
107
108
{
"name": "mtbird",
"private": true,
"author": "zousongqi <[email protected]>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"mtbbuilder": "./builder/mtbbuilder.js"
},
"files": [
"packages",
"builder"
],
"scripts": {
"postinstall": "pnpm run --filter @mtbird/cli build",
"start": "pnpm run -r --parallel --aggregate-output --filter @mtbird/example... start",
"watch": "pnpm run -r --parallel --filter @mtbird/example^... start",
"watch2": "pnpm run -r --parallel --aggregate-output --filter=!@mtbird/example --filter=!mtbird-storybook start",
"build": "pnpm run --if-present --stream --aggregate-output -r --filter=!@mtbird/example --filter=!mtbird-storybook build",
"bootstrap": "lerna exec yarn && yarn build && lerna exec yarn link && yarn link-pkg",
"release:check": "changeset status --since=master",
"release:enter-beta": "changeset pre enter beta",
"release:exit-beta": "changeset pre exit beta",
"release:change-version": "changeset version",
"release:publish": "changeset publish",
"release:changeset": "changeset",
"link-pkg": "yarn link @mtbird/component-basic & yarn link @mtbird/helper-component & yarn link @mtbird/renderer-web & yarn link @mtbird/shared & yarn link @mtbird/ui && lerna run link-pkg --scope=@mtbird/example --stream",
"update-version": "lerna version prerelease --force-publish --conventional-commits",
"lerna:build": "lerna run build",
"publish": "changeset publish --registry=https://registry.npmjs.com/",
"lint": "yarn prettier --write ."
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@changesets/cli": "^2.26.1",
"@mtbird/renderer-web": "^0.0.3-beta.37",
"@mtbird/shared": "^0.0.3-beta.37",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-url": "^7.0.0",
"@svgr/rollup": "^6.2.1",
"@types/react": "^18.0.25",
"@types/svgr__rollup": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"antd": "^5.6.3",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-standard": "^5.0.0",
"lerna": "^4.0.0",
"less": "^4.1.2",
"postcss": "^8.3.5",
"postcss-base64": "^0.7.1",
"postcss-cssnext": "^3.1.0",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-loader": "3.0.0",
"postcss-modules": "^1.5.0",
"postcss-nested": "^4.1.2",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-px-to-viewport": "^1.1.1",
"postcss-px2rem": "^0.3.0",
"postcss-safe-parser": "5.0.2",
"postcss-simple-vars": "^5.0.2",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"rollup": "^2.72.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-extensions": "^0.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.4",
"yargs": "^17.4.1"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@mtbird/component-basic": "^0.0.3-beta.46",
"@mtbird/core": "^0.0.3-beta.43",
"@mtbird/ui": "^0.0.3-beta.43",
"chalk": "^5.2.0",
"lodash": "^4.17.21",
"react": "^18.1.0",
"react-color": "^2.19.3",
"react-dom": "^18.1.0"
}
}