-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.21 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.21 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "block-playground",
"version": "1.0.0",
"description": "Block Playground",
"license": "GPL-v3",
"repository": {
"type": "git",
"url": "https://github.com/PopupMaker/Block-Playground/"
},
"main": "index.js",
"scripts": {
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format:js": "wp-scripts format-js",
"format:js:src": "wp-scripts format-js ./src",
"lint:style": "wp-scripts lint-style",
"lint:css:src": "wp-scripts lint-style 'src/**/*.css'",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"postpackages-update": "npm run build",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"devDependencies": {
"@wordpress/base-styles": "^1.5.0",
"@wordpress/scripts": "^7.2.0",
"classnames": "^2.2.6",
"css-loader": "^3.5.0",
"ignore-emit-webpack-plugin": "^2.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "4.13.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^8.0.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@wordpress/block-library": "^2.15.0",
"@wordpress/data": "^4.15.0",
"react-select": "^3.1.0"
},
"comments": {
"devDependencies": {
"note": "These are non required dependencies, but adding them above allows your IDE to autocomplete correctly. They are loaded in WP core and are not needed beyond this purpose.",
"@wordpress/block-editor": "^3.8.0",
"@wordpress/blocks": "^6.10.0",
"@wordpress/components": "^9.3.0",
"@wordpress/compose": "^3.12.0",
"@wordpress/data": "^4.12.0",
"@wordpress/dom": "^2.8.0",
"@wordpress/dom-ready": "^2.8.0",
"@wordpress/element": "^2.12.0",
"@wordpress/format-library": "^1.15.0",
"@wordpress/hooks": "^2.7.0",
"@wordpress/i18n": "^3.10.0",
"@wordpress/keycodes": "^2.8.0",
"@wordpress/rich-text": "^3.13.0"
}
}
}