-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 755 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 755 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
{
"name": "25-Beginner-JavaScript-Project-ideas",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/jinhwansuh/25-Beginner-JavaScript-Project-ideas.git",
"author": "jinhwansuh <nick02190219@gmail.com>",
"license": "MIT",
"scripts": {
"prod": "webpack serve --mode=production",
"dev": "webpack-dev-server --open",
"build": "webpack --mode=production"
},
"devDependencies": {
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}