forked from 10up/ElasticPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.48 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": "ElasticPress",
"license": "GPL-2.0-or-later",
"description": "A fast and flexible search and query engine for WordPress.",
"devDependencies": {
"@10up/eslint-config": "^1.0.9",
"@10up/stylelint-config": "^1.0.3",
"@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/api-fetch": "^3.6.0",
"@wordpress/babel-preset-default": "^4.1.0",
"@wordpress/element": "^2.5.0",
"@wordpress/i18n": "^3.5.0",
"acorn": "^7.1.1",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"browserslist": "^4.1.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": "^5.4.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.13.0",
"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",
"terser": "^3.17.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",
"jsdoc": "^3.6.3",
"wp-hookdoc": "^0.2.0"
},
"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.prod.js",
"build-release": "npm install && composer install --no-dev -o && npm run build",
"lint-release": "npm install && composer install && npm run lint",
"lint-css": "stylelint assets/css",
"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": {
"chart.js": "^2.8.0"
}
}