-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "snips-node-handlers-api",
"version": "1.0.0",
"description": "An API built to handle all kind of snips.ai requests",
"keywords": [
"snips",
"node",
"handler",
"ai",
"iot"
],
"author": "gjdass",
"repository": {
"type": "git",
"url": "https://github.com/gjdass/snips-node-handlers-api.git"
},
"license": "MIT",
"main": "dist/index.js",
"dependencies": {
"aws-sdk": "^2.185.0",
"axios": "^0.17.1",
"config": "^1.29.2",
"cross-env": "^5.1.3",
"i18n": "^0.8.3",
"lame": "^1.2.4",
"lodash": "^4.17.4",
"log4js": "^2.5.2",
"mqtt": "^2.15.1",
"path": "^0.12.7",
"speaker": "^0.4.0"
},
"devDependencies": {
"@types/config": "0.0.33",
"@types/i18n": "^0.8.3",
"@types/lodash": "^4.14.93",
"@types/log4js": "^2.3.5",
"@types/node": "^9.3.0",
"nodemon": "^1.14.11",
"typescript": "^2.6.2"
},
"scripts": {
"start": "cross-env nodemon dist/index.js",
"build": "rm -rf dist/ && tsc",
"watch": "rm -rf dist/ && tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
}
}