-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "system-js-code",
"version": "1.0.0",
"description": "systemJS 是一个通用的模块加载器,它能在浏览器上动态加载模块。 微前端的核心就是加载微应用,我们将应用打包成模块,在浏览器中通过systemJS来加载解决",
"main": "index.js",
"scripts": {
"dev": "webpack serve",
"build":"webpack --env production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gehuama/system-js-code.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gehuama/system-js-code/issues"
},
"homepage": "https://github.com/gehuama/system-js-code#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"html-webpack-plugin": "^5.3.2",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}