-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.63 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.63 KB
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
{
"name": "elasticpress-labs",
"version": "2.5.0",
"description": "ElasticPress Labs",
"author": {
"name": "10up",
"email": "info@10up.com",
"url": "https://10up.com",
"role": "developer"
},
"license": "GPL-2.0-or-later",
"scripts": {
"test": "./vendor/bin/phpunit",
"start": "composer install && npm install && npm run build",
"build": "10up-toolkit build",
"watch": "10up-toolkit start",
"build-release": "npm install && composer install --no-dev -o && npm run build",
"build:zip": "./bin/build-zip.sh",
"lint-release": "npm install && composer install && npm run lint",
"lint-style": "10up-toolkit lint-style",
"lint-js": "10up-toolkit lint-js assets/js tests/e2e",
"lint-php": "composer run lint",
"format-js": "10up-toolkit format-js assets/js tests/e2e",
"lint": "npm run lint-style && npm run lint-js && npm run lint-php",
"format": "npm run format-js",
"prepare": "husky",
"es:start": "./bin/install-es-docker.sh start",
"es:stop": "./bin/install-es-docker.sh stop",
"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 && npm run es:start",
"env:stop": "wp-env stop && npm run es:stop",
"playwright:test": "playwright test -c tests/e2e/playwright.config.ts",
"playwright:ui": "playwright test -c tests/e2e/playwright.config.ts --ui",
"e2e:setup": "./bin/setup-e2e-env.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/10up/ElasticPressLabs"
},
"workspaces": [
"tests/e2e"
],
"devDependencies": {
"@wordpress/env": "^10.15.0",
"10up-toolkit": "^6.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10"
},
"engines": {
"node": ">=20.0.0"
},
"10up-toolkit": {
"entry": {
"admin": "./assets/js/admin/admin.js",
"ai-search-summary-block-script": "./assets/js/blocks/ai-search-summary/index.js",
"ai-search-summary-block-frontend-script": "./assets/js/blocks/ai-search-summary/frontend.js",
"embeddings-editor-script": "./assets/js/embeddings-editor/index.js",
"embeddings-script": "./assets/js/embeddings/index.js",
"geo-location-editor-script": "./assets/js/geo-location/editor.js",
"geo-location-script": "./assets/js/geo-location/index.js",
"search-templates-script": "./assets/js/search-templates/index.js",
"blocks-styles": "./assets/css/blocks.css"
},
"wpDependencyExternals": true
},
"dependencies": {
"@wordpress/icons": "^10.15.1",
"react-loading-skeleton": "^3.5.0"
},
"overrides": {
"@babel/runtime": "^7.27.6"
}
}