-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "reddit-notifier",
"version": "1.0.0",
"description": "Reddit mail notifications",
"main": "./build/server.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start:dev": "nodemon --inspect ./src/server.ts",
"start": "npm run build && node build/server.js",
"lint": "tslint --project .",
"docs": "typedoc --out docs src"
},
"keywords": [
"typescript",
"node",
"nodejs",
"rest",
"restful",
"api"
],
"author": "Alessandro Pinto <alemp.rj@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/form-data": "^2.5.0",
"@types/helmet": "^4.0.0",
"@types/jsonfile": "^6.0.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.14",
"@types/node-cron": "^2.0.3",
"@types/winston": "^2.4.4",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typedoc": "^0.19.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^3.0.0",
"helmet": "^4.2.0",
"jsonfile": "^6.1.0",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"winston": "^3.3.3"
}
}