-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "webpack-training",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "lite-server",
"watch": "npx webpack --watch",
"build:dev": "npx webpack --mode=development",
"build:prod": "npx webpack --mode=production",
"dev": "webpack serve --open",
"server": "node ./src/server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"clean-webpack-plugin": "^4.0.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "^5.5.0",
"lite-server": "^2.6.1",
"mini-css-extract-plugin": "^2.7.2",
"process": "^0.11.10",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"babel-loader": "^9.1.0",
"css-loader": "^6.7.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"style-loader": "^3.3.1"
}
}