-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
39 lines (39 loc) · 934 Bytes
/
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
{
"name": "wa-chatbot",
"version": "1.0.0",
"description": "",
"main": "build/start",
"scripts": {
"tsc": "tsc",
"prestart": "npm run build",
"dev": "ts-node src/start.ts",
"dev:watch": "nodemon",
"build": "rm -rf ./build/ && tsc",
"start": "node build/start.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/dialogflow": "^4.0.4",
"@types/express": "4.17.1",
"@types/node": "^14.14.7",
"@types/twilio": "^2.11.0",
"nodemon": "^2.0.6",
"ts-lint": "^4.5.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"@overnightjs/logger": "^1.2.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dialogflow": "^1.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"twilio": "^3.51.0"
}
}