-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
28 lines (28 loc) · 1.03 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
{
"name": "wporg-5ftf",
"version": "1.0.0",
"description": "The codebase and development environment for Five for the Future.",
"author": "WordPress.org",
"license": "GPL-2.0-or-later",
"private": true,
"devDependencies": {
"@wordpress/env": "10.6.0",
"@wordpress/scripts": "30.0.2"
},
"scripts": {
"setup:tools": "npm install && composer install",
"build:old-theme": "npm run build --workspace=wporg-5ftf",
"start:old-theme": "npm run watch --workspace=wporg-5ftf",
"build:theme": "npm run build --workspace=wporg-5ftf-2024",
"start:theme": "npm run start --workspace=wporg-5ftf-2024",
"update:tools": "composer update",
"wp-env": "wp-env",
"lint:php": "composer lint ./themes/wporg-5ftf ./themes/wporg-5ftf-2024 ./plugins/wporg-5ftf",
"format:php": "composer format ./themes/wporg-5ftf ./themes/wporg-5ftf-2024 ./plugins/wporg-5ftf",
"test:php": "wp-env run tests-cli ./wp-content/mu-plugins/vendor/bin/phpunit -c ./wp-content/phpunit.xml.dist"
},
"workspaces": [
"themes/wporg-5ftf",
"themes/wporg-5ftf-2024"
]
}