forked from staringos/mtbird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.91 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
{
"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": {
"start": "lerna run start --scope=@mtbird/example --stream",
"bootstrap": "lerna exec yarn",
"update-version": "lerna version prerelease --force-publish --conventional-commits",
"build": "lerna run build",
"publish": "lerna publish from-package --yes --registry https://registry.npmjs.org/",
"link": "yarn link @mtbird/renderer-web & yarn link @mtbird/shared"
},
"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",
"@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.1.4",
"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.6.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": {
"react": "^18.1.0",
"react-color": "^2.19.3",
"react-dom": "^18.1.0"
}
}