-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"name": "webpack-application-setup",
"version": "1.0.0",
"description": "This project involves the setup webpack for a given project. Webpack is a static module bundler or the purpose is to bundle the JavaScript files for usage in a browser.",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emmanuel-Dominic/webpack-application-setup.git"
},
"keywords": [],
"author": "Emmanuel-Dominic",
"license": "ISC",
"bugs": {
"url": "https://github.com/Emmanuel-Dominic/webpack-application-setup/issues"
},
"homepage": "https://github.com/Emmanuel-Dominic/webpack-application-setup#readme",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"dependencies": {
"axios": "^0.27.2"
}
}