-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
35 lines (35 loc) · 1.42 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
{
"name": "wporg-pattern-directory-project",
"version": "0.0.0",
"description": "wordpress.org/pattern-directory website",
"author": "WordPress.org",
"license": "GPL-2.0-or-later",
"private": true,
"dependencies": {
"@wordpress/env": "9.3.0",
"@wordpress/scripts": "27.2.0",
"@wordpress/stylelint-config": "21.34.0"
},
"scripts": {
"build:creator": "yarn workspace wporg-pattern-creator build",
"build:directory": "yarn workspace wporg-pattern-directory build",
"build:theme:old": "yarn workspace wporg-pattern-directory-theme build",
"build:theme": "yarn workspace wporg-pattern-directory-2024-theme build",
"start:creator": "yarn workspace wporg-pattern-creator start",
"start:directory": "yarn workspace wporg-pattern-directory start",
"start:theme:old": "yarn workspace wporg-pattern-directory-theme start",
"start:theme": "yarn workspace wporg-pattern-directory-2024-theme start",
"setup:tools": "echo \"Not used.\"",
"create": "./bin/index.sh",
"wp-env": "wp-env",
"lint:php": "composer run lint",
"format:php": "composer run format",
"test:php": "wp-env run tests-cli --env-cwd=/var/www/html/ ./vendor/bin/phpunit -c wp-content/tests/phpunit/phpunit.xml"
},
"workspaces": [
"public_html/wp-content/plugins/pattern-creator",
"public_html/wp-content/plugins/pattern-directory",
"public_html/wp-content/themes/pattern-directory",
"public_html/wp-content/themes/wporg-pattern-directory-2024"
]
}