-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 943 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 943 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
27
28
29
30
31
32
33
34
35
36
{
"name": "gutenberg-tutorial",
"private": true,
"author": "Henner Setyono (https://pixelstudio.id)",
"dependencies": {
"@wordpress/components": "^11.1.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@wordpress/scripts": "^12.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.30.0",
"mini-css-extract-plugin": "^0.11.2",
"sass-loader": "^10.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch"
},
"babel": {
"presets": [
"@babel/preset-env",
"@wordpress/babel-preset-default"
]
}
}