-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 KB
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
{
"name": "gonzague-bot",
"version": "0.0.0",
"description": "Gonzague bot",
"author": "Arthur Minduca",
"license": "",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build && node createOutputFolder.js",
"lintfix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"start": "npm run build && node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch ./src -e ts --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com/minduca/gonzague-bot"
},
"dependencies": {
"botbuilder": "^4.6.2",
"botbuilder-dialogs": "^4.6.2",
"dotenv": "^8.2.0",
"raspicam": "^0.2.14",
"replace": "~1.1.1",
"restify": "^8.4.1",
"serialport": "^8.0.5"
},
"devDependencies": {
"@types/dotenv": "6.1.1",
"@types/restify": "8.4.1",
"@types/serialport": "6.0.1",
"nodemon": "~1.19.4",
"tslint": "~5.20.0",
"typescript": "~3.6.4"
}
}