-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.13 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
{
"private": true,
"workspaces": {
"packages": [
"packages/core-ui",
"packages/frontend-components/*",
"packages/shared-components"
]
},
"devDependencies": {
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"axios": "^0.21.1",
"lerna": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-toastify": "^7.0.4",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"react-icons": "^4.2.0"
},
"scripts": {
"build": "yarn lerna run build --ignore=@mfe/shared",
"prebuild": "yarn lerna run build --scope=@mfe/shared",
"start:core-ui": "yarn workspace @mfe/core-ui start",
"start:feature-01": "yarn workspace @mfe/feature-01 start",
"link": "yarn lerna run link",
"clean": "yarn lerna run clean",
"bootstrap": "yarn lerna bootstrap",
"cypress": "cypress open"
}
}