-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.16 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
29
30
31
32
33
34
35
36
37
{
"name": "automatic-vendor-sharing_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",
"@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",
"typescript": "^5.9.3",
"webpack": "5.105.3",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"scripts": {
"start": "rspack serve -c rspack.config.js",
"build": "rspack build --mode production -c rspack.config.js",
"build:prod": "webpack --config webpack.prod.config.js",
"legacy:start": "webpack serve --config webpack.config.js",
"legacy:build": "webpack --config webpack.config.js --mode production",
"serve": "serve dist -p 3001 --cors",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"analyze": "webpack-bundle-analyzer dist/static/js/*.js"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}