-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "wp-crowdfunding",
"version": "1.0.0",
"description": "The Ultimate Fundraising and Backer Plugin for WordPress.",
"main": "index.js",
"scripts": {
"start": "webpack --watch",
"watch" : "gulp watch",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --config ./webpack.production.config.js && gulp build"
},
"author": "Themeum",
"license": "GPLv3",
"dependencies": {
"gulp-clean-css": "^4.3.0",
"gulp-minify": "^3.1.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^2.1.0",
"eslint": "^4.6.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "2.34.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"exports-loader": "^0.7.0",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^3.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-minify-css": "^1.2.4",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-wp-pot": "^2.4.3",
"gulp-zip": "^5.0.2",
"imports-loader": "^0.8.0",
"jquery": "^3.5.0",
"lodash": "^4.17.15",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"babel": {
"presets": [
"env",
"react"
]
}
}