-
-
Notifications
You must be signed in to change notification settings - Fork 436
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.33 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
28
{
"name": "3010-rspack-provider",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@module-federation/enhanced": "workspace:*",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
"react-refresh": "0.14.2",
"@rspack/plugin-react-refresh": "^0.7.5",
"@rspack/core": "^1.0.2",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0"
},
"dependencies": {
"antd": "4.24.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.0.0"
},
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec rspack build --config rspack.config.js --mode production",
"build:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec rspack build --config rspack.config.js --mode development",
"build:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec rspack build --config rspack.config.js --mode production",
"serve": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec rspack serve --config rspack.config.js --mode production --port 3010 --no-hot",
"serve:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec rspack serve --config rspack.config.js --mode development --port 3010",
"serve:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec rspack serve --config rspack.config.js --mode production --port 3010 --no-hot"
}
}