-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1013 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
31
32
{
"name": "@peniti/filament-calendar",
"private": "true",
"description": "FullCalendar.js integration for Filament panels",
"type": "module",
"scripts": {
"build:scripts": "node esbuild.js",
"build:styles": "npx tailwindcss -c tailwind.config.js -i resources/css/filament-calendar.css -o dist/filament-calendar.css",
"build": "npm-run-all -n -s build:*",
"start": "npm-run-all -n -p 'build:* -- --watch'"
},
"keywords": [
"filament",
"calendar",
"fullcalendar"
],
"author": {
"name": "Simone Peniti",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@fullcalendar/core": "^5.11",
"@fullcalendar/daygrid": "^5.11",
"@fullcalendar/google-calendar": "5.11",
"@fullcalendar/interaction": "^5.11",
"@fullcalendar/timegrid": "^5.11",
"esbuild": "^0.19.4",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.3"
}
}