-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1020 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
27
28
29
30
31
32
33
34
{
"name": "webpack-test",
"version": "1.0.0",
"description": "Frontend Framework desarollado por Axel José Loupias con Webpack",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"server": "webpack-cli serve --mode=development",
"init": "node init.js"
},
"author": "Axel José Loupias Twitter: @AxelLoupias",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@webpack-cli/generators": "^1.1.0",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.3",
"css-loader": "^6.5.1",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
}
}