-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.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
{
"name": "node-typescript-api",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"serve": "nodemon index.ts --ignore *.js",
"start": "node build/src/index.js",
"build": "tsc index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"set-webhook": "telegraf -m setWebhook"
},
"devDependencies": {
"@notionhq/client": "^2.2.0",
"@types/aws-lambda": "^8.10.102",
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"@types/pg": "^8.6.5",
"gts": "^3.1.0",
"nodemon": "^2.0.15",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/morgan": "^1.9.3",
"@vendia/serverless-express": "^4.10.1",
"ejs": "^3.1.7",
"express": "^4.17.3",
"html-metadata-parser": "^2.0.4",
"https-proxy-agent": "^5.0.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"socks-proxy-agent": "^7.0.0",
"telegraf": "4.9.1",
"winston": "^3.7.2"
}
}