-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 KB
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
46
{
"name": "webpack-configuration",
"version": "1.0.0",
"description": "Test project to configure webpack",
"main": "main.html",
"scripts": {
"dev": "webpack --mode development --watch --progress",
"translate": "wp-pot --src '**/**/**/*.php' --dest-file 'i18n/wordpress-webpack.pot' --package '{{webpack-configuration}}' --domain '{{plugin_domain}}' --last-translator '{{sayedulsayem}} <{{[email protected]}}>' --team '{{sayedulsayem}} <{{[email protected]}}>' --bug-report '{{[email protected]}}'"
},
"author": "sayedulsayem",
"license": "GPL-3.0-or-later",
"browserslist": [
"last 2 version",
"> 1%",
"ie >= 9",
"ie_mob >= 10",
"ff >= 30",
"chrome >= 34",
"safari >= 7",
"opera >= 23",
"ios >= 7",
"android >= 4",
"bb >= 10"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.3.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"javascript-obfuscator": "^3.0.0",
"mini-css-extract-plugin": "^2.3.0",
"postcss": "^8.1.7",
"postcss-loader": "^4.3.0",
"sass": "^1.43.4",
"sass-loader": "^12.1.0",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.2",
"webpack-cli": "^4.8.0",
"webpack-obfuscator": "^3.5.0",
"webpack-remove-empty-scripts": "^0.7.1",
"wp-pot-cli": "^1.5.0"
},
"dependencies": {}
}