-
-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.61 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.61 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": "react-remote-ui",
"version": "1.0.0",
"private": true,
"description": "Federation example for reactRemoteUI",
"devDependencies": {
"@module-federation/utilities": "workspace:*",
"@module-federation/storybook-addon": "workspace:*",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.prod.js --mode production",
"build:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.js --mode development",
"build:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.prod.js --mode production",
"serve": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --mode development --port 4201",
"serve:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --mode development --port 4201",
"serve:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.prod.js --mode production --port 4201 --no-hot",
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --no-error-on-unmatched-pattern --ignore-pattern node_modules **/*.{ts,tsx,js,jsx}",
"test": "pnpm exec jest --config jest.config.ts --passWithNoTests",
"test:ci": "pnpm exec jest --config jest.config.ts --passWithNoTests --ci --coverage",
"serve-static": "pnpm exec serve dist -l 4201 --cors"
}
}