-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.36 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
{
"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 <zackary.l.jackson@gmail.com> (https://github.com/ScriptedAlchemy)",
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": [
"dashboard-plugin"
]
},
"resolutions": {
"webpack-cli": "4.7.2",
"@webpack-cli/serve": "1.5.2"
},
"devDependencies": {
"@changesets/cli": "2.17.0",
"@webpack-cli/serve": "1.5.2",
"concurrently": "6.2.1",
"husky": "4.3.8",
"lerna": "4.0.0",
"prettier": "2.4.0",
"pretty-quick": "3.1.3",
"webpack-cli": "4.7.2"
},
"scripts": {
"submodules": "git pull --recurse-submodules",
"release": "changeset publish",
"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.17.6",
"yarn": "1.22.17"
},
"contributors": [
"Jack Herrington <jherr@pobox.com>",
"Zack Jackson <zackary.l.jackson@gmail.com>",
"Marais Rossouw <me@maraisr.com>",
"Jacob Ebey <jacob.ebey@live.com>"
]
}