-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.98 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
{
"name": "calendar",
"version": "0.1.0",
"description": "FINOS Community Calendar",
"license": "Apache-2.0",
"engines": {
"node": "^20.11.0",
"npm": "^10.3.0"
},
"scripts": {
"build": "npm run decrypt-service-account && npm run setup-env && npm run download-ics && npm run get-events && gatsby build",
"develop": "npm run get-mock-events && gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean && npx rimraf dist",
"lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "npm run lint -- --fix",
"get-mock-events": "node ./scripts/setMock.js",
"decrypt-service-account": "gpg --quiet --batch --yes --decrypt --passphrase=${GOOGLE_SERVICE_ACCOUNT_PASSPHRASE} --output $INIT_CWD/calendar-service-account.json calendar-service-account.json.gpg",
"download-ics": "npx mkdirp dist && curl -o dist/basic.ics https://calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics",
"setup-env": "npx mkdir /var/task && cp calendar-service-account.json /var/task/calendar-service-account.json",
"get-events": "npx mkdirp dist && node ./scripts/googleapi2events.mjs",
"getEvents": "npm run get-events",
"test": "vitest"
},
"dependencies": {
"@fullcalendar/core": "^6.1.10",
"@fullcalendar/daygrid": "^6.1.10",
"@fullcalendar/icalendar": "^6.1.10",
"@fullcalendar/interaction": "^6.1.10",
"@fullcalendar/react": "^6.1.10",
"@fullcalendar/rrule": "^6.1.10",
"@fullcalendar/timegrid": "^6.1.10",
"@mdi/js": "^7.3.67",
"@mdi/react": "^1.6.1",
"encoding": "^0.1.13",
"gatsby": "^5.14.0",
"googleapis": "^144.0.0",
"html-react-parser": "^5.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.0"
},
"devDependencies": {
"html-to-text": "^9.0.5",
"ical-generator": "^8.0.0",
"mkdirp": "^3.0.1",
"rimraf": "^6.0.1"
}
}