-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "gb-fullcalendar",
"version": "0.2.1",
"description": "Example block written with ESNext standard and JSX support – build step required.",
"author": "August Oberhauser",
"license": "GPL-3.0-or-later",
"contributors": [
{
"name": "August Oberhauser",
"email": "git@reb0.org",
"url": "https://www.reb0.org/"
}
],
"repository": "https://github.com/Oberhauser-Dev/gb-fullcalendar.git",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"zip": "npm run build && gulp zip",
"zip-snap": "npm run build && gulp zipSnapshot",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@fullcalendar/common": "^5.5.1",
"@wordpress/editor": "^9.25.2",
"@wordpress/element": "^2.19.0",
"@wordpress/i18n": "^3.17.0",
"@wordpress/scripts": "^13.0.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-zip": "^5.0.2"
},
"dependencies": {
"@fullcalendar/bootstrap": "^5.5.0",
"@fullcalendar/core": "^5.5.1",
"@fullcalendar/daygrid": "^5.5.0",
"@fullcalendar/list": "^5.5.0",
"@fullcalendar/react": "^5.5.0",
"@fullcalendar/timegrid": "^5.5.1",
"@material-ui/core": "^4.11.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}