-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
42
43
44
45
{
"name": "boilerplate_theme",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production --progress",
"dev": "cross-env NODE_ENV=development webpack --watch --mode development --progress",
"clean": "rm -rf build/*"
},
"keywords": [
"wordpress",
"themes"
],
"author": "Qubewave AB",
"license": "GPL",
"private": true,
"browserslist": [
"defaults"
],
"dependencies": {
"bootstrap": "^5.2.3",
"jquery": "^3.5.0",
"bootstrap-icons": "^1.10.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.3.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^4.2.0",
"sass": "^1.55.0",
"sass-loader": "^10.1.0"
}
}