-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
27 lines (27 loc) · 981 Bytes
/
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
{
"name": "wporg-gutenberg-project",
"version": "1.0.0",
"description": "The codebase and development environment for w.org/gutenberg.",
"author": "WordPress.org",
"license": "GPL-2.0-or-later",
"private": true,
"dependencies": {},
"devDependencies": {
"@wordpress/env": "^4.1.0"
},
"scripts": {
"initial-setup": "composer install && yarn && yarn run update-configs && yarn run install:mu-plugins",
"install:mu-plugins": "cd source/wp-content/mu-plugins/wporg-mu-plugins/ && npm install && npm run build",
"update-configs": "TEXTDOMAIN=wporg composer exec update-configs",
"wp-env": "wp-env",
"env": "wp-env start",
"env:stop": "wp-env stop",
"env:cli": "wp-env run cli",
"env:setup": "wp-env start --update && yarn run env:reset && yarn run env:misc",
"env:reset": "wp-env clean all && wp-env run cli \"wp site empty --yes\"",
"env:misc": "wp-env run cli \"bash env/misc.sh\""
},
"workspaces": [
"source/wp-content/themes/wporg-gutenberg"
]
}