forked from liip/wrapper-block-example-wp-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 757 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 757 Bytes
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
{
"name": "wrapper-block-example",
"version": "1.0.0",
"description": "Example how to create a wrapper block for Gutenberg in WordPress",
"scripts": {
"start": "parcel watch --no-hmr assets/js/wrapper-block-example.js -d dist",
"build": "parcel build assets/js/wrapper-block-example.js -d dist",
"lint": "eslint assets/js"
},
"author": "Liip AG",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-react-jsx": "^6.24.1",
"eslint": "^6.6.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"parcel-bundler": "^1.12.4"
},
"private": true,
"dependencies": {
"classnames": "^2.2.6"
}
}