-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 883 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
{
"name": "react-mf-starter",
"version": "1.0.0",
"description": "This project is a start for using Module Federation with React & Typescript",
"main": "index.js",
"repository": "https://github.com/delanebob/react-mf-starter.git",
"author": "Stephen Delaney",
"license": "MIT",
"private": true,
"workspaces": [
"modules/*"
],
"scripts": {
"deps": "yarn workspaces run deps",
"build": "concurrently \"wsrun --parallel build\"",
"start": "concurrently \"wsrun --parallel start\"",
"clean": "rm -fr node_modules modules/**/node_modules && yarn run clean:dist",
"clean:dist": "rm -fr modules/**/dist",
"serve": "node build-utils/serve.js",
"serve:build": "yarn build && node build-utils/serve.js"
},
"dependencies": {
"concurrently": "^5.3.0",
"wsrun": "^5.2.4"
},
"devDependencies": {
"express": "^4.17.1"
}
}