-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "micro-frontend",
"version": "1.0.0",
"description": "A micro-frontend app",
"private": true,
"workspaces": [
"packages/*"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"scripts": {
"start:core-ui": "yarn workspace core-ui start",
"start:app1": "yarn workspace app1 start",
"start:app2": "yarn workspace app2 start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asif-simform/micro-frontend.git"
},
"keywords": [
"react",
"mfe",
"webpack",
"module-federation"
],
"author": "Asif Vora",
"license": "ISC",
"bugs": {
"url": "https://github.com/asif-simform/micro-frontend/issues"
},
"homepage": "https://github.com/asif-simform/micro-frontend#readme",
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/runtime": "^7.22.15",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.3",
"react-hot-loader": "^4.13.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}