-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 914 Bytes
/
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
{
"version": "1.0.0",
"description": "My webpack project",
"name": "poc-webpack-microfrontend",
"scripts": {
"install:all": "npm install && cd projects/first-mfe && npm install && cd ../second-mfe && npm install",
"serve": "npx webpack server",
"serve:first-mfe": "cd projects/first-mfe && npx webpack server",
"serve:second-mfe": "cd projects/second-mfe && npx webpack server",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.2",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}