-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 868 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 868 Bytes
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
{
"name": "webpack-basic-starter",
"version": "0.1.0",
"description": "Webpack basic starter",
"scripts": {
"build": "webpack --config ./config/webpack.prod.js",
"dev": "webpack-dev-server --config ./config/webpack.dev.js",
"start": "yarn run dev"
},
"keywords": [],
"license": "ISC",
"author": {
"email": "manishsencha2001@gmail.com",
"name": "Manish Sencha",
"url": "https://github.com/manishsencha"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.5",
"mini-css-extract-plugin": "^2.9.4",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
}
}