-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.5 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
46
47
48
49
50
51
52
53
54
55
{
"name": "woo-in-stock-notifier",
"version": "1.0.4",
"description": "Customers can build a waiting list of products those are out of stock. They will be notified automatically via email, when products come back in stock.",
"url": "http://emgk.github.io",
"author": "Govind Kumar",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.10.1",
"node-sass": "^4.14.1",
"sass-resources-loader": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.12.5",
"@wordpress/eslint-plugin": "^2.3.0",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.0",
"css-loader": "^2.1.1",
"del": "^5.1.0",
"eslint": "^8.2.0",
"file-loader": "^4.3.0",
"gulp": "^4.0.2",
"gulp-wp-pot": "^2.4.0",
"gulp-zip": "^5.0.1",
"md5": "^2.2.1",
"mini-css-extract-plugin": "^0.7.0",
"object-to-formdata": "^3.0.9",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^7.1.0",
"webpack": "^5.62.1",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-stream": "^7.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": "3.0.0",
"targets": {
"browsers": ">2%"
}
}
],
"@babel/preset-react"
]
}
}