-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.56 KB
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
56
57
58
59
60
61
62
63
64
65
{
"name": "fast-calender-manager",
"version": "1.0.0",
"description": "This is a web app based tool for modifying my GCal faster, for blazingly fast week planning xD",
"type": "module",
"scripts": {
"build": "rsbuild build",
"docker-build": "docker build -t fast-calendar-manager .",
"docker-run": "docker run -d --restart unless-stopped -p 8080:8080 --name fast-calendar-manager-container fast-calendar-manager",
"docker-build-run": "docker build -t fast-calendar-manager . && docker run -d --restart unless-stopped -p 8080:8080 --name fast-calendar-manager-container fast-calendar-manager",
"docker-stop": "docker stop fast-calendar-manager-container",
"docker-rm": "docker rm fast-calendar-manager-container",
"docker-update": "docker stop fast-calendar-manager-container && docker rm fast-calendar-manager-container && docker image rm fast-calendar-manager && docker build -t fast-calendar-manager . && docker run -d --restart unless-stopped -p 8080:8080 --name fast-calendar-manager-container fast-calendar-manager",
"docker-push": "docker push kyleklus/fast-calendar-manager",
"dev": "rsbuild dev --open",
"preview": "rsbuild preview",
"start": "rsbuild build && rsbuild start",
"deploy": "rsbuild deploy --mode github"
},
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@fullcalendar/bootstrap5": "^6.1.18",
"@fullcalendar/core": "^6.1.18",
"@fullcalendar/icalendar": "^6.1.18",
"@fullcalendar/interaction": "^6.1.18",
"@fullcalendar/react": "^6.1.18",
"@fullcalendar/timegrid": "^6.1.18",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"bootstrap": "^5.3.7",
"bootstrap-icons": "^1.13.1",
"googleapis": "^105.0.0",
"luxon": "^3.7.1",
"react": "^19.1.0",
"react-bootstrap": "^2.10.10",
"react-datepicker": "^8.4.0",
"react-dom": "^19.1.0",
"react-google-calendar-api": "^2.3.0",
"reactjs-popup": "^2.0.6",
"typescript": "^5.8.3"
},
"devDependencies": {
"@rsbuild/core": "^1.4.3",
"@rsbuild/plugin-react": "^1.3.3",
"@types/gapi": "^0.0.47",
"@types/gapi.calendar": "^3.0.6",
"@types/gapi.client.tasks-v1": "^0.0.5",
"@types/google.accounts": "^0.0.6",
"@types/luxon": "^3.7.0",
"@types/node": "^18.13.0",
"@types/react-bootstrap": "^1.0.1",
"@types/react-datepicker": "^6.2.0",
"typescript": "^4.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KyleKlus/fast-calender-manager.git"
},
"author": "Kyle Klus",
"license": "MIT",
"bugs": {
"url": "https://github.com/KyleKlus/fast-calender-manager/issues"
},
"homepage": "https://github.com/KyleKlus/fast-calender-manager#readme"
}