-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 912 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 912 Bytes
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
{
"name": "microfrontends-webpack-mod-federation",
"private": true,
"version": "1.0.0",
"author": "Yassinze Belkaid <yassine.belkaid87@gmail.com>",
"description": "Example of working with webpack module federation",
"main": "sandbox/dis/index.js",
"repository": "https://github.com/belyas/microfrontends-webpack-mod-federation.git",
"license": "MIT",
"scripts": {
"start": "lerna run --scope @yb/* --parallel start",
"build": "lerna run --scope @yb/* build",
"clean": "lerna run --scope @yb/* --parallel clean",
"start:prods": "lerna run --scope @yb/products-list start"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-loader": "^8.2.1",
"html-webpack-plugin": "^4.5.0",
"lerna": "^3.22.1",
"rimraf": "^3.0.2",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
}
}