-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 KB
/
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
31
32
33
{
"name": "random-blocks",
"version": "1.0.0",
"description": "Random blocks for Gutenberg",
"main": "random-blocks.php",
"private": true,
"scripts": {
"build-address": "parcel build address/address.jsx --out-dir address --public-url .",
"build-hours": "parcel build business-hours/business-hours.jsx --out-dir business-hours --public-url .",
"build-phone": "parcel build contact-phone/contact-phone.jsx --out-dir contact-phone --public-url .",
"build-time": "parcel build time/time.jsx --out-dir time --public-url .",
"build": "npm run build-address & npm run build-hours & npm run build-phone & npm run build-time"
},
"keywords": [
"wordpress",
"plugin",
"gutenberg"
],
"author": "George Stephanis",
"license": "GPLv2",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/runtime-corejs2": "^7.1.2",
"@wordpress/babel-preset-default": "^2.1.0",
"parcel-bundler": "^1.10.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sass": "^1.15.1"
},
"dependencies": {
"react-phone-number-input": "^2.2.17"
}
}