forked from 10up/ElasticPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.01 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
82
83
84
85
86
87
88
89
90
91
{
"name": "elasticpress",
"license": "GPL-2.0-or-later",
"description": "A fast and flexible search and query engine for WordPress.",
"devDependencies": {
"@10up/eslint-config": "^2.0.0",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@wordpress/babel-preset-default": "^4.1.0",
"@wordpress/element": "^2.5.0",
"babel-eslint": "^10.1.0",
"acorn": "^7.1.1",
"babel-loader": "^8.0.0",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"browserslist": "^4.12.0",
"caniuse-db": "^1.0.30000878",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"core-js": "^3.1.4",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-hooks": "^2.5.0",
"jsdoc": "^3.6.3",
"mini-css-extract-plugin": "^0.5.0",
"postcss-editor-styles": "^0.1.5",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"react": "^16.9.0",
"react-beautiful-dnd": "^11.0.5",
"react-dom": "^16.9.0",
"react-select": "^3.1.0",
"prettier": "^2.0.5",
"terser": "^3.17.0",
"uuid": "^8.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-fix-style-only-entries": "^0.2.1",
"webpack-merge": "^4.2.1",
"webpackbar": "^3.1.5",
"wp-hookdoc": "^0.2.0",
"terser-webpack-plugin": "^3.0.6"
},
"scripts": {
"start": "composer install --ignore-platform-reqs && npm install && npm run build",
"build": "webpack --config config/webpack.prod.js",
"watch": "webpack --watch --config config/webpack.dev.js",
"build-release": "npm install && composer install --no-dev -o && npm run build",
"lint-release": "npm install && composer install && npm run lint",
"lint-js": "eslint assets/js",
"lint-php": "composer run lint",
"format-js": "eslint --fix assets/js",
"lint": "npm run lint-css && npm run lint-js && npm run lint-php",
"format": "npm run format-js",
"build:docs": "rm -rf hook_docs && jsdoc -c hookdoc-conf.json elasticpress.php includes"
},
"author": "10up",
"repository": {
"type": "git",
"url": "https://github.com/10up/ElasticPress"
},
"engineStrict": true,
"engines": {
"node": ">=8.11"
},
"dependencies": {
"@wordpress/api-fetch": "^3.14.0",
"@wordpress/i18n": "^3.5.0",
"chart.js": "^2.8.0",
"element-closest": "^3.0.2",
"promise-polyfill": "^8.1.3",
"react": "^16.9.0",
"react-beautiful-dnd": "^11.0.5",
"react-dom": "^16.9.0",
"whatwg-fetch": "^3.0.0"
}
}