-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.5 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
{
"name": "citybot",
"version": "0.0.0",
"private": true,
"main": "./lib/index.js",
"scripts": {
"build": "node_modules/.bin/tsc --build",
"lint": "node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"postinstall": "npm run build && node ./deploymentScripts/webConfigPrep.js",
"start": "node ./lib/index.js",
"debug": "node_modules/.bin/tsc --build && node --inspect ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node_modules/.bin/nodemon --watch ./src -e ts --exec \"npm run debug\""
},
"dependencies": {
"adaptivecards": "^1.1.3",
"airtable": "^0.6.0",
"botbuilder": "^4.3.4",
"botbuilder-azure": "^4.3.4",
"botbuilder-dialogs": "^4.3.4",
"cloudinary": "^1.14.0",
"dotenv": "^8.0.0",
"download": "^7.1.0",
"flatted": "^2.0.1",
"form-data": "^2.4.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"replace": "^1.1.0",
"restify": "^8.3.3",
"turndown": "^5.0.3",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/download": "^6.2.4",
"@types/form-data": "^2.2.1",
"@types/lodash": "^4.14.123",
"@types/node-fetch": "^2.3.3",
"@types/restify": "^7.2.9",
"@types/turndown": "^5.0.0",
"nodemon": "^1.19.0",
"prettier": "^1.17.0",
"prettier-tslint": "^0.4.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1"
},
"engines": {
"node": "10.14.1",
"npm": "6.4.1"
}
}