-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 912 Bytes
/
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
{
"private": true,
"name": "velmesov_webpack_config",
"version": "1.0.0",
"description": "Velmesov: Webpack config",
"author": {
"name": "Yuri Velmesov",
"email": "yuri.velmesov@yandex.ru"
},
"scripts": {
"dev": "webpack --config webpack.config.js --env mode=development --env inputDir=src/frontend/layout --env outputDir=public/layout",
"prod": "webpack --config webpack.config.js --env mode=production --env inputDir=src/frontend/layout --env outputDir=public/layout"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}