-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
30 lines (30 loc) · 972 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
29
30
{
"name": "gutyblocks2",
"version": "2.0.0",
"description": "A gutenberg block build environment",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --mode=development",
"watch": "webpack --config webpack.config.js --mode=development --watch",
"build:prod": "webpack --config webpack.config.js --mode=production",
"new-block": "node ./generate.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jim Schofield",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-minify-webpack-plugin": "^0.3.1",
"css-loader": "^2.1.0",
"generate-template-files": "^2.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}