-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "raven-webmail",
"version": "1.2.1-3",
"description": "A webmail for the wildduck mail server",
"main": "./raven.js",
"scripts": {
"prepare": "ts-patch install -s",
"test": "echo \"Test configuration pending\"",
"start": "node raven.js start",
"dev": "run-p 'dev:*'",
"dev:typescript": "cd server && ttsc -w",
"dev:server": "RAVEN_SVELTEKIT_DEV=1 RAVEN_DISPLAY_ERRORS=1 RAVEN_SVELTEKIT_PORT=3000 nodemon raven.js start",
"dev:app": "cd app && npm run dev",
"build": "run-p 'build:*'",
"build:app": "cd app && npm run build && cd ..",
"build:server": "tsc --project ./server/tsconfig.json"
},
"bin": {
"raven": "./raven.js"
},
"keywords": [
"wildduck",
"webmail",
"raven"
],
"repository": "https://github.com/ramiroaisen/raven-webmail",
"author": "ramiroaisen https://github.com/ramiroisen",
"license": "ISC",
"dependencies": {
"abort-controller": "^3.0.0",
"accept-language-parser": "^1.5.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"compression": "^1.7.4",
"connect-mongodb-session": "^3.1.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"http-status-codes": "^2.1.4",
"mongodb": "^4.1.2",
"node-fetch": "^2.6.0",
"object-path": "^0.11.8",
"qs": "^6.10.1",
"source-map-support": "^0.5.20",
"toml": "^3.0.0"
},
"devDependencies": {
"ts-patch": "^2.1.0",
"@types/accept-language-parser": "^1.5.2",
"@types/compression": "^1.7.2",
"@types/connect-mongodb-session": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node-fetch": "2.5",
"@types/object-path": "^0.11.1",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"typescript": "4.6.4",
"typescript-is": "^0.18.3"
}
}