forked from humanmade/query-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.17 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
{
"name": "query-loop-filter",
"private": true,
"description": "Filter blocks for query loops",
"scripts": {
"build": "wp-scripts build --experimental-modules",
"start": "wp-scripts start --experimental-modules",
"env:cli": "npx @wordpress/env run cli",
"env:db": "npx @wordpress/env run cli -- mysql -uroot -ppassword wordpress --host=mysql",
"env:destroy": "npx @wordpress/env destroy",
"env:logs": "npx @wordpress/env logs development | grep -v -E '\"(GET|OPTIONS|HEAD|POST|PUT)'",
"env:start": "npx @wordpress/env start",
"env:stop": "npx @wordpress/env stop",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer phpcs",
"playground:start": "npx @wp-playground/cli server --blueprint=blueprint.json --auto-mount",
"test:e2e": "playwright test",
"test:e2e:debug": "playwright test --debug",
"test:e2e:watch": "playwright test --ui"
},
"author": "Human Made Limited",
"license": "GPL-2.0-or-later",
"dependencies": {
"@wordpress/scripts": "^28.6.0"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@types/node": "^24.10.1",
"@wp-playground/cli": "^1.0.0"
}
}