forked from lordfriend/MailHook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "MailHook",
"version": "1.0.0",
"description": "A web hook which dispatch events from Albireo through email",
"main": "index.js",
"scripts": {
"serve": "nodemon dist/app.js",
"start": "npm run watch",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"watch-ts": "tsc -w",
"build": "tsc"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.17.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.7",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"js-yaml": "^3.10.0",
"lokijs": "^1.5.1",
"morgan": "^1.9.0",
"nodemailer": "^4.4.0",
"raven": "^2.2.1",
"reflect-metadata": "^0.1.10",
"shortid": "^2.2.8"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.16.8",
"@types/cookie-parser": "^1.4.1",
"@types/ejs": "^2.3.33",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.0.39",
"@types/js-yaml": "^3.10.1",
"@types/morgan": "^1.7.35",
"@types/nodemailer": "^4.3.1",
"@types/raven": "^2.1.2",
"@types/shortid": "^0.0.29",
"concurrently": "^3.5.0",
"nodemon": "^1.12.1",
"typescript": "^2.6.1"
}
}