-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "calsync",
"version": "1.0.0",
"description": "Calendar sync",
"main": "core.js",
"type": "module",
"dependencies": {
"@fastify/cors": "^11.0.1",
"@fastify/env": "^5.0.2",
"@fastify/formbody": "^8.0.2",
"@fastify/helmet": "^13.0.1",
"@gquittet/graceful-server": "^5.2.14",
"chalk": "^5.4.1",
"dotenv": "^17.2.1",
"fastify": "^5.4.0",
"fastify-metrics": "^12.1.0",
"fastify-plugin": "^5.0.1",
"fastify-sensible": "^3.1.2",
"google-auth-library": "^10.3.0",
"googleapis": "^159.0.0",
"node-ical": "^0.20.1",
"prom-client": "^15.1.3"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"scripts": {
"dev": "node main.js",
"dev2": "nodemon --ext js,mjs,cjs --ignore schedules.json --ignore ics --ignore out --ignore calsyncweb",
"prod": "node --ext js,mjs,cjs --ignore schedules.json --ignore ics --ignore out --ignore calsyncweb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KiterationLabs/calsync.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KiterationLabs/calsync/issues"
},
"homepage": "https://github.com/KiterationLabs/calsync#readme"
}