-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "webpack-app-starter",
"version": "1.0.0",
"description": "Webpack App Starter Kit with Babel, Sass, and Webpack Dev Server with Hot Module Replacement and Bundle Analyzer built-in.",
"author": {
"name": "Darshan Gaikwad",
"email": "darshangaikwad4114@gmail.com"
},
"scripts": {
"start": "webpack serve --open",
"build": "webpack --mode production"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^8.4.1",
"css-loader": "^6.11.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.83.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.4",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2"
},
"dependencies": {
"axios": "^0.26.1"
},
"keywords": [
"webpack",
"babel",
"sass",
"webpack-dev-server",
"hot module replacement",
"bundle analyzer"
],
"repository": {
"type": "git",
"url": "https://github.com/darshangaikwad4114/webpack-starter-app.git"
},
"bugs": {
"url": "https://github.com/darshangaikwad4114/webpack-starter-app/issues"
},
"homepage": "https://github.com/darshangaikwad4114/webpack-starter-app#readme"
}