-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 947 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 947 Bytes
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
{
"name": "cyrus-imap-api-server",
"version": "0.0.2",
"description": "Cyrus IMAP Api Server for account management via a DB.",
"main": "server.js",
"scripts": {
"dev": "node-dev server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mutalis/imap-api.git"
},
"keywords": [
"cyrus",
"imap",
"api",
"server",
"account management"
],
"author": "Mutalis",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mutalis/imap-api/issues"
},
"homepage": "https://github.com/mutalis/imap-api#readme",
"dependencies": {
"@trpc/server": "^10.45.2",
"cors": "^2.8.5",
"express": "^4.21.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"node-dev": "^8.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}