-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 980 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
26
27
{
"name": "microfrontend-lerna-module-federation",
"version": "0.0.0",
"scripts": {
"clean": "npx lerna clean -y && npx lerna run clean && rm -rf build node_modules",
"dev": "NODE_OPTIONS=--openssl-legacy-provider WITH_MULTI_REMOTES=1 NODE_ENV=development npx lerna run develop --parallel",
"single:build": "npx lerna run build --parallel && rm -rf build && mkdir -p build && cp packages/*/build/*.* build",
"single:start": "ws -d build --spa index.html --port 8080 -z",
"multi:build": "WITH_MULTI_REMOTES=1 npx lerna run build --parallel",
"multi:start": "npx lerna run start --parallel"
},
"private": true,
"workspaces": [
"packages/*"
],
"author": "Jory Schiebroek <[email protected]>",
"dependencies": {
"lerna": "4.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.2",
"@types/react-dom": "^18.2.14",
"css-loader": "^6.8.1",
"style-loader": "^3.3.3",
"typescript": "^5.2.2"
}
}