-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.37 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.37 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
{
"name": "millicache",
"version": "1.0.0-rc.2",
"author": "Philipp Wellmer <hello@millipress.com>",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^20.17.10",
"@wordpress/e2e-test-utils-playwright": "1.42.0",
"@wordpress/env": "^11.2.0",
"@wordpress/scripts": "^31.7.0",
"dotenv": "^17.3.1"
},
"dependencies": {
"@wordpress/components": "^32.4.0",
"@wordpress/dom-ready": "^4.10.0",
"@wordpress/element": "^6.10.0",
"@wordpress/i18n": "^6.11.0",
"@wordpress/icons": "^12.0.0"
},
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"lint:js": "wp-scripts lint-js admin/",
"fix:js": "wp-scripts lint-js admin/ --fix",
"lint:style": "wp-scripts lint-style admin/**/*.scss",
"fix:style": "wp-scripts lint-style --fix admin/**/*.scss",
"env:start": "wp-env start",
"env:stop": "docker compose -f tests/wp-env/docker-compose.custom.yml down; wp-env stop",
"env:reset": "wp-env reset all",
"env:destroy": "wp-env destroy",
"env:cli": "wp-env run cli",
"env:redis-cli": "wp-env run cli bash -c 'redis-cli -h ${1:-redis}'",
"env:e2e": "npx playwright test step --workers=1",
"env:e2e:performance": "npx playwright test performance --workers=1",
"env:e2e:performance:results": "node tests/e2e/performance/results.js"
}
}