-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 944 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 944 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
32
33
34
{
"name": "webpack",
"version": "1.0.0",
"description": "프론트엔드 개발을 위한 웹팩 설정",
"main": "index.js",
"scripts": {
"start": "webpack serve --open --mode=development",
"build": "webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coding-angma/webpack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coding-angma/webpack/issues"
},
"homepage": "https://github.com/coding-angma/webpack#readme",
"devDependencies": {
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.2.0",
"style-loader": "^3.2.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"html-webpack-plugin": "^5.3.2"
}
}