-
-
Notifications
You must be signed in to change notification settings - Fork 416
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.45 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.45 KB
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": "react-ts-nested-remote",
"private": true,
"description": "Federation example for react-ts-nested-remote",
"version": "1.0.0",
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@module-federation/enhanced": "workspace:*",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"file-loader": "6.2.0",
"react-refresh": "0.14.2"
},
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.js --mode production",
"build:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.js --mode development",
"build:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.js --mode production",
"serve": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --mode development --port 3005",
"serve:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --mode development --port 3005",
"serve:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --mode production --port 3005 --no-hot",
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --no-error-on-unmatched-pattern --ignore-pattern node_modules **/*.{ts,tsx,js,jsx}",
"serve-static": "pnpm exec serve dist -l 3005 --cors"
}
}