-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.63 KB
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
{
"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/env": "^4.6.0",
"@wordpress/scripts": "^23.0.0",
"copy-webpack-plugin": "^10.2.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "npm:wp-prettier@2.2.1-beta-1"
},
"prettier": "@wordpress/prettier-config",
"scripts": {
"start": "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": "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",
"build:all": "npm run build && npm run build:non-block",
"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",
"env:start": "wp-env start",
"env:start:debug": "wp-env start --xdebug",
"env:stop": "wp-env stop",
"packages-update": "wp-scripts packages-update"
}
}