forked from Automattic/vip-go-mu-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 4.67 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": "@automattic/vip-go-mu-plugins",
"private": true,
"version": "1.0.0",
"description": "mu-plugins used on the VIP Go platform",
"scripts": {
"phplint": "bin/php-lint.sh",
"phpcs": "vendor/bin/phpcs --cache",
"phpcs:fix": "vendor/bin/phpcbf",
"lint": "npm run phplint && npm run phpcs",
"update-es-wp-query": "git subtree pull --prefix search/es-wp-query [email protected]:Automattic/es-wp-query master --squash",
"prepare": "husky install",
"search-build": "cd ./tests/search/e2e && 10up-toolkit build",
"search-env": "wp-env",
"search-env:install-tests-cli": "./bin/search/install-wp-cli.sh tests-wordpress",
"search-env:start": "wp-env start && npm run search-env:install-tests-cli && cd bin/search/es-docker/ && docker-compose up -d",
"search-env:stop": "wp-env stop && cd bin/search/es-docker/ && docker-compose down",
"cypress:delete:reports": "rm cypress/results/* || true",
"cypress:combine:reports": "jrm cypress/results/combined-cy-report.xml \"cypress/results/*.xml\"",
"cypress:setup": "./bin/search/setup-cypress-env.sh",
"cypress:open": "cypress open --config-file tests/search/e2e/cypress.config.js",
"cypress:run": "cypress run --config-file tests/search/e2e/cypress.config.js"
},
"author": "Automattic",
"devDependencies": {
"@wordpress/env": "^5.0.0",
"10up-toolkit": "^4.3.1",
"classnames": "^2.3.1",
"cypress": "^9.5.0",
"cypress-file-upload": "^5.0.8",
"cypress-multi-reporters": "^1.6.1",
"eslint-plugin-cypress": "^2.12.1",
"husky": "8.0.3",
"jsdoc": "^4.0.0",
"junit-report-merger": "^4.0.0",
"lint-staged": "^13.0.0",
"mocha-junit-reporter": "^2.1.1",
"phplint": "2.0.5",
"postcss-preset-env": "^7.0.1",
"terser-webpack-plugin": "^5.3.0",
"wp-hookdoc": "^0.2.0"
},
"10up-toolkit": {
"entry": {
"autosuggest-script.min": "./search/elasticpress/assets/js/autosuggest.js",
"comments-script.min": "./search/elasticpress/assets/js/comments.js",
"dashboard-script.min": "./search/elasticpress/assets/js/dashboard.js",
"facets-script.min": "./search/elasticpress/assets/js/facets.js",
"instant-results-script.min": "./search/elasticpress/assets/js/instant-results/index.js",
"instant-results-admin-script.min": "./search/elasticpress/assets/js/instant-results/admin/index.js",
"notice-script.min": "./search/elasticpress/assets/js/notice.js",
"ordering-script.min": "./search/elasticpress/assets/js/ordering/index.js",
"facets-block-script.min": "./search/elasticpress/assets/js/blocks/facets/taxonomy/index.js",
"facets-meta-block-script.min": "./search/elasticpress/assets/js/blocks/facets/meta/index.js",
"related-posts-block-script.min": "./search/elasticpress/assets/js/blocks/related-posts/index.js",
"settings-script.min": "./search/elasticpress/assets/js/settings.js",
"sync-script.min": "./search/elasticpress/assets/js/sync/index.js",
"sites-admin-script.min": "./search/elasticpress/assets/js/sites-admin.js",
"stats-script.min": "./search/elasticpress/assets/js/stats.js",
"synonyms-script.min": "./search/elasticpress/assets/js/synonyms/index.js",
"admin-script.min": "./search/elasticpress/assets/js/admin.js",
"weighting-script.min": "./search/elasticpress/assets/js/weighting.js",
"autosuggest-styles.min": "./search/elasticpress/assets/css/autosuggest.css",
"comments-styles.min": "./search/elasticpress/assets/css/comments.css",
"dashboard-styles.min": "./search/elasticpress/assets/css/dashboard.css",
"facets-admin-styles.min": "./search/elasticpress/assets/css/facets-admin.css",
"facets-styles.min": "./search/elasticpress/assets/css/facets.css",
"highlighting-styles.min": "./search/elasticpress/assets/css/highlighting.css",
"instant-results-styles.min": "./search/elasticpress/assets/css/instant-results.css",
"ordering-styles.min": "./search/elasticpress/assets/css/ordering.css",
"facets-block-styles.min": "./search/elasticpress/assets/css/facets-block.css",
"related-posts-block-styles.min": "./search/elasticpress/assets/css/related-posts-block.css",
"sync-styles.min": "./search/elasticpress/assets/css/sync.css",
"synonyms-styles.min": "./search/elasticpress/assets/css/synonyms.css"
},
"wpDependencyExternals": true
},
"dependencies": {
"@wordpress/api-fetch": "^6.16.0",
"@wordpress/i18n": "^4.19.0",
"chart.js": "^4.0.1",
"element-closest": "^3.0.2",
"promise-polyfill": "^8.2.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-select": "^5.4.0",
"uuid": "^9.0.0",
"whatwg-fetch": "^3.6.2"
}
}