-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (44 loc) · 1.33 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
{
"name": "webpack-multiple-entry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --config=./webpack/webpack.dev.ts",
"build": "webpack --config=./webpack/webpack.prod.ts",
"analyze": "webpack --config=./webpack/webpack.prod.ts --analyze"
},
"author": "mulingyuer",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@types/glob": "^8.1.0",
"@types/node": "^18.15.3",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"compression-webpack-plugin": "^10.0.0",
"core-js": "3.29.1",
"css-loader": "^6.7.3",
"glob": "^9.2.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.3",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"sass": "^1.59.2",
"sass-loader": "^13.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.76.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.2"
}
}