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