forked from FadiZahhar/webpackproductionbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "Webpack Production Base",
"version": "1.0.0",
"description": "Webpack Configuration with bootstrap and jquery ready",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config webpack.dev.js",
"prod": "webpack --config webpack.prod.js",
"serve": "webpack serve --config webpack.dev.js --open"
},
"author": "Fadi Nicolas Zahhar",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.1.3",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"toastr": "^2.1.4",
"typed.js": "^2.0.12",
"validate.js": "^0.13.1"
},
"devDependencies": {
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"purgecss-webpack-plugin": "^4.1.3",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}