-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 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
67
68
69
70
71
72
{
"name": "mf-bundler",
"version": "1.8.30",
"description": "Bundle MicroFrontend without pain",
"engines": {
"node": ">=12.13.0"
},
"files": [
"dist"
],
"bin": {
"mf-install": "./dist/mf-install.js",
"mf-bundle": "./dist/mf-bundle.js",
"mf-clean": "./dist/mf-clean.js",
"mf-partition": "./dist/mf-partition.js",
"mf-serve": "./dist/mf-serve.js",
"mf-test": "./dist/mf-test.js"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --fix --ext=ts src",
"prepare": "rm -rf dist/ && npm run build"
},
"author": "Rocky Signavong",
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"case": "^1.6.3",
"commander": "^10.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"esm-to-cjs": "^1.2.1",
"fs-extra": "^11.1.0",
"http-server": "^14.1.1",
"lodash.foreach": "^4.5.0",
"lodash.groupby": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.isfinite": "^3.3.2",
"lodash.kebabcase": "^4.1.1",
"node-eval": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.20.2",
"@rollup-extras/plugin-clean": "^1.3.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/bluebird": "^3.5.38",
"@types/lodash.foreach": "^4.5.7",
"@types/lodash.groupby": "^4.6.7",
"@types/lodash.isempty": "^4.4.7",
"@types/lodash.isfinite": "^3.3.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"rollup": "^3.10.0",
"rollup-plugin-shebang-bin": "^0.0.5",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}