-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.75 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
66
67
68
69
70
71
{
"name": "@ripeseed/cal-connect",
"version": "1.1.0",
"description": "Package for calendar integration",
"author": "Ripeseed",
"repository": {
"type": "git",
"url": "https://github.com/RipeSeed/CalConnect"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty",
"build": "tsc",
"start": "node dist/index.js",
"clean": "rimraf dist coverage",
"lint": "biome check src/",
"lint:fix": "biome check src/ --fix",
"format": "biome format src/ --write",
"test": "vitest run"
},
"dependencies": {
"@microsoft/microsoft-graph-client": "^3.0.7",
"@microsoft/microsoft-graph-types": "^2.40.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-rate-limit": "^7.2.0",
"google-auth-library": "^9.15.0",
"googleapis": "^144.0.0",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"mongodb": "^6.11.0",
"mongoose": "^8.8.4",
"pino": "^9.4.0",
"pino-http": "^10.0.0",
"toad-scheduler": "^3.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"lint-staged": "^15.2.2",
"pino-pretty": "^11.0.0",
"rimraf": "^6.0.0",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
"biome check --apply --no-errors-on-unmatched"
]
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"splitting": true,
"sourcemap": true,
"clean": true
}
}