-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 925 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
{
"name": "rhasspy-skills",
"version": "1.0.0",
"description": "A collection of skills for rhasspy voice assistant, that can be deployed individually",
"main": "index.js",
"scripts": {
"start": "ts-node skills/demo/src/index.ts",
"test": "jest",
"lint": "eslint",
"build": "webpack"
},
"author": "Angelo Veltens",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"mqtt": "^4.2.6"
},
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"dotenv": "^10.0.0",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"nock": "^13.0.11",
"prettier": "^2.3.0",
"ts-loader": "^8.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
}
}