-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 814 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 814 Bytes
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": "microfrontends",
"version": "1.0.0",
"license": "MIT",
"private": true,
"dependencies": {
},
"scripts": {
"start": "lerna run start --parallel",
"build": "lerna run build --parallel",
"build:home": "yarn workspace @microfrontends/home build",
"build:checkout": "yarn workspace @microfrontends/checkout build",
"build:navigation": "yarn workspace @microfrontends/navigation build",
"build:entrypoint": "yarn workspace @microfrontends/entrypoint build",
"bootstrap": "lerna bootstrap"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^2.6.0",
"lerna": "^3.15.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2"
}
}