forked from module-federation/module-federation-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.05 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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": "MIT",
"private": true,
"workspaces": {
"packages": [
"./basic-host-remote/*",
"./third-party-scripts/*",
"./bi-directional/*",
"./startup-code/*",
"./different-react-versions/*",
"./self-healing/*",
"./react-hmr/*",
"./comprehensive-demo/*",
"./server-side-rendering/*",
"./server-side-render-only/*",
"./dynamic-system-host/*",
"./shared-context/*",
"./shared-routing/*",
"./shared-routes2/*",
"./shared-store-cross-framework/*",
"./typescript/*",
"./typescript-project-references/*",
"./nested/*",
"./nextjs-sidecar/*",
"./version-discrepancy/*",
"./dashboard-example/*",
"./react-in-vue/*",
"./redux-reducer-injection/*",
"./angular-universal-ssr/*",
"./advanced-api/dynamic-remotes/*",
"./advanced-api/automatic-vendor-sharing/*",
"./nextjs-bi-directional/*",
"./vue2-in-vue3/*",
"./vue3-demo/*",
"./vue-cli/*",
"./genesis/*"
],
"nohoist": [
"**/svelte",
"**/svelte/**",
"**/svelte-loader",
"**/svelte-loader/**"
]
},
"devDependencies": {
"concurrently": "7.3.0",
"cross-spawn": "7.0.3",
"husky": "7.0.4",
"jest": "26.6.3",
"lerna": "3.22.1",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"@vue/compiler-sfc": "3.2.37"
},
"scripts": {
"bootstrap": "lerna bootstrap --ignore-scripts",
"build": "lerna run --parallel build",
"submodules": "git pull --recurse-submodules",
"prettier": "prettier --write \"**/*.{js,jsx,json,md,ts,tsx}\"",
"prettier:check": "prettier --list-different \"**/*.{js,jsx,json,md,ts,tsx}\"",
"test": "jest test/index.spec.js --maxWorkers=2"
}
}