-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-wordpress-plugin",
"slug": "react-wordpress-plugin",
"version": "1.0.0",
"author": "dtbaker",
"homepage": "https://dtbaker.net",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"development": "webpack --progress --colors --watch --mode=development",
"production": "webpack --colors -p --config webpack.config.js --mode=production",
"eslint": "node_modules/.bin/eslint src --ext .js --ext .jsx",
"sass-lint": "node_modules/sass-lint/bin/sass-lint.js -c ./.sass-lint.yml -v -q"
},
"dependencies": {
"body-scroll-lock": "^2.6.1",
"core-js": "^3.0.0",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"handlebars": "^4.0.12",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.3.1",
"natives": "^1.1.6",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"overlayscrollbars": "^1.6.3",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"query-string": "^6.2.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-lazy-load-image-component": "^1.3.2",
"react-modal": "^3.8.1",
"react-paginate": "^6.3.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"sass-loader": "^7.1.0",
"select2": "^4.0.6-rc.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-inline-react-svg": "^1.0.1",
"babelify": "^10.0.0",
"browser-sync": "^2.26.3",
"browserify-shim": "^3.8.14",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"prettier": "^1.16.4",
"run-sequence": "^2.2.1",
"sass-lint": "^1.13.1",
"terser-webpack-plugin": "^1.2.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:jQuery",
"underscore": "global:_"
}
}