-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 993 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 993 Bytes
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
{
"name": "dialogflow-template",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"debug": "ts-node-dev --respawn src/main.ts",
"build": "rm -rf dist; tsc && echo \"$(tput setaf 2)Compilation successful$(tput sgr0)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zathershtein/dialogflow.git"
},
"author": "zathershtein",
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/zathershtein/dialogflow/issues"
},
"homepage": "https://github.com/zathershtein/dialogflow#readme",
"dependencies": {
"dialogflow": "^1.1.1",
"dotenv": "^8.2.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^13.1.7",
"@types/uuid": "^3.4.6",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.4"
}
}