-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
28 lines (28 loc) · 848 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
{
"private": true,
"name": "wp-block-hmr-demo",
"version": "0.1.0",
"description": "A plugin demonstrating block and plugin auto-loading with hot module replacement.",
"keywords": [
"wordpress",
"plugin"
],
"author": "K Adam White",
"license": "(Artistic-2.0 OR GPL-2.0-or-later)",
"scripts": {
"build": "webpack --config=.config/webpack.config.prod.js",
"start": "webpack-dev-server --config .config/webpack.config.dev.js"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@wordpress/babel-preset-default": "^3.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"signal-exit": "^3.0.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-manifest-plugin": "^2.0.4"
}
}