-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.2 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.2 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
{
"name": "dynamic-remotes-runtime-environment-variables_remote",
"version": "0.0.0",
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/preset-react": "7.24.7",
"@module-federation/enhanced": "0.10.0",
"@rspack/cli": "1.2.7",
"@rspack/core": "1.2.7",
"@rspack/dev-server": "1.0.10",
"babel-loader": "9.1.3",
"html-webpack-plugin": "5.6.0",
"serve": "14.2.3",
"webpack": "5.98.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"scripts": {
"start": "chmod +x ./env.sh && cp env-config.json ./public/ && rspack serve",
"build": "rspack build --mode production",
"serve": "serve dist -p 3001",
"clean": "rm -rf dist",
"docker:build": "docker build . -t csr-env/remote:0.0.0",
"docker:run": "docker run -it --name csr-env-remote -p 3001:80 -d -e API_URL=https://remote.com/api csr-env/remote:0.0.0",
"docker:rm": "docker rm -f csr-env-remote",
"legacy:start": "chmod +x ./env.sh && cp env-config.json ./public/ && webpack-cli serve",
"legacy:build": "webpack --mode production"
},
"dependencies": {
"copy-webpack-plugin": "12.0.2",
"moment": "^2.29.4",
"react": "^16.13.0",
"react-dom": "^16.13.0"
}
}