-
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) · 919 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 919 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 template",
"version": "1.0.0",
"description": "The basic Webpack project template for a web app",
"main": "index.js",
"scripts": {
"dev": "webpack --mode=development --node-env=development",
"build": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"start": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katada93/webpack-basic-template.git"
},
"keywords": [],
"author": "Muslim Tsokaev",
"license": "ISC",
"bugs": {
"url": "https://github.com/katada93/webpack-basic-template/issues"
},
"homepage": "https://github.com/katada93/webpack-basic-template#readme",
"devDependencies": {
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}