-
-
Notifications
You must be signed in to change notification settings - Fork 414
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.48 KB
/
package.json
File metadata and controls
21 lines (21 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "node-dynamic-remote",
"private": true,
"description": "Federation example for node-dynamic-remote",
"dependencies": {
"@module-federation/node": "workspace:*",
"lodash": "4.17.23"
},
"version": "1.0.1",
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.js --output-path dist --mode production",
"build:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.js --output-path dist --mode development",
"build:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli --config webpack.config.js --output-path dist --mode production",
"serve": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --output-path dist --mode development --port 3026",
"serve:development": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --output-path dist --mode development --port 3026",
"serve:production": "NODE_OPTIONS=--max_old_space_size=4096 pnpm exec webpack-cli serve --config webpack.config.js --output-path dist --mode production --port 3026 --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"
}
}