-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
50 lines (50 loc) · 1.65 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "module-federation-examples-root",
"version": "0.0.0",
"description": "Examples showcasing Webpack 5's Module Federation",
"repository": "https://github.com/module-federation/module-federation-examples.git",
"author": "Zack Jackson <[email protected]> (https://github.com/ScriptedAlchemy)",
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": [
"dashboard-example/*",
"dashboard-plugin",
"dashboard-fe"
]
},
"resolutions": {
"webpack": "5.31.2",
"@module-federation/dashboard-plugin": "./dashboard-plugin",
"webpack-cli": "4.4.0",
"@webpack-cli/serve": "1.2.2"
},
"devDependencies": {
"@changesets/cli": "2.16.0",
"@webpack-cli/serve": "1.2.2",
"concurrently": "5.3.0",
"husky": "4.3.8",
"lerna": "4.0.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"webpack-cli": "4.4.0"
},
"scripts": {
"submodules": "git pull --recurse-submodules",
"release": "changeset publish && yarn workspace @module-federation/dashboard run docker:build && yarn workspace @module-federation/dashboard run docker:push",
"prettier": "prettier --write \"**/*.{js,json,md,ts,tsx}\"",
"wipe": "find . -name \"node_modules\" -exec rm -rf '{}' +\nfind . -name \"yarn.lock\" -exec rm -rf '{}' +",
"prettier:check": "prettier --list-different \"**/*.{js,json,md,ts,tsx}\""
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
},
"contributors": [
"Jack Herrington <[email protected]>",
"Zack Jackson <[email protected]>",
"Marais Rossouw <[email protected]>",
"Jacob Ebey <[email protected]>"
],
"dependencies": {}
}