-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 989 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 989 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
28
29
30
31
32
33
34
35
36
{
"name": "dynamic-remotes_app1",
"version": "0.0.0",
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "^7.28.5",
"@module-federation/enhanced": "2.0.1",
"@module-federation/runtime": "2.0.1",
"@rspack/cli": "1.7.6",
"@rspack/core": "1.7.6",
"@rspack/dev-server": "1.2.1",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.0",
"babel-loader": "9.1.3",
"html-webpack-plugin": "5.6.0",
"serve": "14.2.3",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "5.105.3",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"scripts": {
"start": "rspack serve",
"build": "rspack --mode production",
"legacy:start": "webpack-cli serve",
"legacy:build": "webpack --mode production",
"serve": "serve dist -p 3001",
"clean": "rm -rf dist"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}