-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
98 lines (98 loc) · 2.9 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": "@mx-design/cli",
"version": "2.3.9",
"repository": "https://github.com/lio-mengxiang/mx-design-cli.git",
"description": "Cli Tools for Mx Design Project",
"keywords": [
"mx-cli",
"react cli",
"webpack pack cli",
"react library pack cli"
],
"license": "MIT",
"author": "[email protected]",
"typings": "types/src/index.d.ts",
"bin": {
"mx": "./bin/index.js"
},
"files": [
"lib",
"bin",
"types"
],
"scripts": {
"clean": "rimraf types lib coverage",
"test": "jest --config ./jest.config.js",
"coverage": "rimraf coverage && jest --config ./jest.config.js --coverage",
"build:types": "rimraf types && tsc --outDir types -d --emitDeclarationOnly",
"build:lib": "rimraf lib && babel src --extensions .ts --out-dir lib --copy-files",
"build": "yarn build:types && yarn build:lib",
"release": "ts-node ./scripts/release.ts"
},
"dependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@babel/runtime-corejs3": "^7.13.10",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.4",
"@types/jest": "27.4.1",
"babel-jest": "^26.5.2",
"babel-loader": "^8.2.2",
"commander": "^7.2.0",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "3.4.1",
"detect-port-alt": "1.1.6",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-less": "^5.0.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.5.3",
"less": "4.1.3",
"less-loader": "11.1.0",
"mini-css-extract-plugin": "^1.6.0",
"mkdirp": "^0.5.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"process": "^0.11.10",
"react-refresh": "^0.10.0",
"rimraf": "^3.0.2",
"style-loader": "3.3.1",
"terser-webpack-plugin": "^5.1.2",
"thread-loader": "3.0.4",
"through2": "^3.0.1",
"ts-jest": "^26.5.0",
"typescript": "^4.5.4",
"webpack": "5.37.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3",
"@svgr/webpack": "^5.5.0",
"ts-node": "10.5.0",
"@mx-design/web-utils": "0.1.8",
"@mx-design/node-utils": "0.1.3"
},
"devDependencies": {
"@mx-design/release": "2.2.22",
"@types/webpack": "4.41.26"
},
"browserslist": [
"chrome 60",
"Firefox 45",
"safari 10"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}