forked from WordPress/Learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 856 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
28
29
30
31
32
33
{
"name": "wporg-learn-dev",
"version": "1.0.0",
"description": "Local development tools for learn.wordpress.org",
"author": "WordPress.org",
"license": "GPL-2.0-or-later",
"private": true,
"dependencies": {
"@wordpress/env": "4.1.3"
},
"workspaces": {
"packages": [
"wp-content/mu-plugins/pub/locale-switcher",
"wp-content/plugins/wporg-learn",
"wp-content/themes/pub/wporg-learn-2020"
],
"nohoist": [
"**/grunt-*"
]
},
"scripts": {
"install:env": "./bin/index.sh",
"install:githooks": "mv .git/hooks .git/hooks_orig && ln -s ../.githooks .git/hooks",
"create": "composer install && yarn workspaces run build && yarn run install:env",
"wp-env": "wp-env",
"lint:php": "composer run lint",
"format:php": "composer run format"
},
"main": "index.js",
"devDependencies": {
"@wordpress/scripts": "^19.2.2"
}
}