forked from 10up/ElasticPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.96 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
92
{
"name": "elasticpress",
"version": "4.3.0",
"license": "GPL-2.0-or-later",
"description": "A fast and flexible search and query engine for WordPress.",
"devDependencies": {
"@wordpress/env": "^5.0.0",
"10up-toolkit": "^3.0.0",
"classnames": "^2.3.1",
"cypress": "^9.5.0",
"cypress-file-upload": "^5.0.8",
"eslint-plugin-cypress": "^2.12.1",
"jsdoc": "^3.6.10",
"postcss-preset-env": "^7.0.1",
"terser-webpack-plugin": "^5.3.0",
"wp-hookdoc": "^0.2.0"
},
"scripts": {
"start": "composer install --ignore-platform-reqs && npm install && npm run build",
"build": "10up-toolkit build",
"watch": "10up-toolkit start",
"lint-release": "npm install && composer install && npm run lint",
"lint-js": "10up-toolkit lint-js assets/js tests/cypress",
"lint-php": "composer run lint",
"format-js": "10up-toolkit format-js assets/js",
"lint": "npm run lint-style && npm run lint-js && npm run lint-php",
"build:docs": "rm -rf hook_docs && jsdoc -c hookdoc-conf.json elasticpress.php includes",
"build:zip": "./bin/build-zip.sh",
"lint-style": "10up-toolkit lint-style",
"env": "wp-env",
"env:install-tests-cli": "./bin/install-wp-cli.sh tests-wordpress",
"env:start": "wp-env start && npm run env:install-tests-cli && cd bin/es-docker/ && docker-compose up -d",
"env:stop": "wp-env stop && cd bin/es-docker/ && docker-compose down",
"cypress:setup": "./bin/setup-cypress-env.sh",
"cypress:open": "cypress open --config-file tests/cypress/config.json",
"cypress:run": "cypress run --config-file tests/cypress/config.json"
},
"author": "10up",
"repository": {
"type": "git",
"url": "https://github.com/10up/ElasticPress"
},
"engineStrict": true,
"engines": {
"node": ">=14",
"npm": ">=8"
},
"10up-toolkit": {
"entry": {
"autosuggest-script.min": "./assets/js/autosuggest.js",
"comments-script.min": "./assets/js/comments.js",
"dashboard-script.min": "./assets/js/dashboard.js",
"facets-script.min": "./assets/js/facets.js",
"instant-results-script.min": "./assets/js/instant-results/index.js",
"instant-results-admin-script.min": "./assets/js/instant-results/admin/index.js",
"notice-script.min": "./assets/js/notice.js",
"ordering-script.min": "./assets/js/ordering/index.js",
"facets-block-script.min": "./assets/js/blocks/facets/taxonomy/index.js",
"facets-meta-block-script.min": "./assets/js/blocks/facets/meta/index.js",
"related-posts-block-script.min": "./assets/js/blocks/related-posts/index.js",
"settings-script.min": "./assets/js/settings.js",
"sync-script.min": "./assets/js/sync/index.js",
"sites-admin-script.min": "./assets/js/sites-admin.js",
"stats-script.min": "./assets/js/stats.js",
"synonyms-script.min": "./assets/js/synonyms/index.js",
"admin-script.min": "./assets/js/admin.js",
"weighting-script.min": "./assets/js/weighting.js",
"autosuggest-styles.min": "./assets/css/autosuggest.css",
"comments-styles.min": "./assets/css/comments.css",
"dashboard-styles.min": "./assets/css/dashboard.css",
"facets-admin-styles.min": "./assets/css/facets-admin.css",
"facets-styles.min": "./assets/css/facets.css",
"highlighting-styles.min": "./assets/css/highlighting.css",
"instant-results-styles.min": "./assets/css/instant-results.css",
"ordering-styles.min": "./assets/css/ordering.css",
"facets-block-styles.min": "./assets/css/facets-block.css",
"related-posts-block-styles.min": "./assets/css/related-posts-block.css",
"sync-styles.min": "./assets/css/sync.css",
"synonyms-styles.min": "./assets/css/synonyms.css"
},
"wpDependencyExternals": true
},
"dependencies": {
"@10up/component-tooltip": "^2.0.0",
"@wordpress/icons": "^6.1.1",
"chart.js": "^2.9.4",
"focus-trap-react": "^8.8.2",
"react-beautiful-dnd": "^11.0.5",
"react-slider": "^1.3.1",
"uuid": "^8.3.2"
}
}