-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 908 Bytes
/
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
{
"name": "modulefederation-microfrontends-webcomponent",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"host": "concurrently 'npm:host:*'",
"host:wc-react": "cd webcomponent-react && npm run host",
"host:wc-vue": "cd webcomponent-vue && npm run host",
"host:wc-vanilla": "cd webcomponent-vanilla && npm run host",
"build": "concurrently 'npm:build:*'",
"build:wc-react": "cd webcomponent-react && npm run build",
"build:wc-vue": "cd webcomponent-vue && npm run build",
"build:wc-vanilla": "cd webcomponent-vanilla && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"workspaces": [
"main",
"webcomponent-react",
"webcomponent-vue",
"webcomponent-vanilla"
],
"dependencies": {
"modern-normalize": "^2.0.0"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}