-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "micro-frontend-self",
"version": "1.0.0",
"description": "Micro-Frontend-Demo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --mode development",
"build": "webpack"
},
"author": "Prashant Yadav",
"license": "ISC",
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"single-spa": "^5.9.3",
"single-spa-react": "^4.6.1",
"single-spa-vue": "^2.5.1",
"vue": "^3.2.31"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"vue-loader": "^17.0.0",
"@vue/compiler-sfc": "^3.2.31",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "5.2.1"
}
}