-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1.21 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
{
"name": "blr-today-website",
"private": "true",
"license": "AGPL-3.0-or-later",
"type": "module",
"repository": "github:blr-today/website",
"scripts": {
"build": "rollup --config rollup.config.js",
"license": "npx generate-license-file --config .config/glf.json",
"fetch-calendar": "rm -f events.db && wget https://nightly.link/blr-today/ingest/workflows/update/main/events-db.zip -O events-db.zip && unzip events-db.zip && rm events-db.zip",
"stat": "sqlite3 --header --csv events.db \"SELECT substr(url, 9, instr(substr(url, 9), '/') - 1) AS domain, COUNT(*) as count FROM events GROUP by domain ORDER BY count DESC\""
},
"dependencies": {
"@fullcalendar/adaptive": "^7.0.0-beta.1",
"@fullcalendar/core": "^7.0.0-beta.1",
"@fullcalendar/daygrid": "^7.0.0-beta.1",
"@fullcalendar/list": "^7.0.0-beta.1",
"@fullcalendar/multimonth": "^7.0.0-beta.1",
"@fullcalendar/timegrid": "^7.0.0-beta.1",
"ical.js": "^2.1.0",
"simple-icons": "^13.17.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3",
"@rollup/plugin-terser": "^0.4",
"@rollup/plugin-typescript": "^12.1",
"rollup": "^4.27",
"tslib": "^2.8",
"typescript": "^5.6"
}
}