-
Notifications
You must be signed in to change notification settings - Fork 316
/
package.json
44 lines (44 loc) · 1.7 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
36
37
38
39
40
41
42
43
44
{
"name": "gutenberg-examples",
"version": "1.1.0",
"private": true,
"description": "Gutenberg Examples",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"editor",
"Examples"
],
"homepage": "https://github.com/WordPress/gutenberg-examples/",
"repository": "git+https://github.com/WordPress/gutenberg-examples.git",
"bugs": {
"url": "https://github.com/WordPress/gutenberg-examples/issues"
},
"devDependencies": {
"@wordpress/e2e-test-utils": "^9.5.0",
"@wordpress/env": "^5.13.0",
"@wordpress/scripts": "^25.5.1",
"copy-webpack-plugin": "^11.0.0"
},
"prettier": "@wordpress/prettier-config",
"scripts": {
"start": "(npm run start:block) & npm run start:non-block",
"start:block": "wp-scripts start --webpack-copy-php --webpack-src-dir=blocks-jsx --output-path=build/blocks-jsx",
"start:non-block": "wp-scripts start --output-path=build/non-block-examples --config=./non-block-examples.webpack.config.js",
"build": "(npm run build:block) && npm run build:non-block",
"build:block": "wp-scripts build --webpack-copy-php --webpack-src-dir=blocks-jsx --output-path=build/blocks-jsx",
"build:non-block": "wp-scripts build --output-path=build/non-block-examples --config=./non-block-examples.webpack.config.js",
"lint:js": "wp-scripts lint-js",
"lint:style": "wp-scripts lint-style",
"format:js": "wp-scripts format",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"test": "wp-scripts test-unit-js",
"test:e2e": "wp-scripts test-e2e",
"env:start": "wp-env start",
"env:start:debug": "wp-env start --xdebug",
"env:stop": "wp-env stop",
"packages-update": "wp-scripts packages-update"
}
}