-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "mmm-awesome-alexa",
"version": "1.0.0",
"description": "Easy Alexa module for Magic Mirror",
"main": "MMM-awesome-alexa.js",
"scripts": {
"build": "webpack --progress --profile --bail --display-error-details",
"dev": "npm run build -- --watch --mode development",
"test": "npm run lint",
"lint": "tslint --project .",
"node-pre-gyp": "node-pre-gyp clean configure build",
"spell": "cspell src/**/*.ts",
"style": "prettier -l src/**/*.ts",
"serve:docs": "docsify serve ./docs",
"config-helper": "node config-helper.js"
},
"author": "Dolan Miu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/MMM-awesome-alexa.git"
},
"dependencies": {
"chalk": "2.4.2",
"clear": "0.1.0",
"clui": "0.3.6",
"figlet": "1.2.1",
"inquirer": "6.3.1",
"node-record-lpcm16": "0.3.0",
"request": "2.79.0",
"request-promise": "^4.2.4",
"rxjs": "5.4.2",
"snowboy": "1.3.1"
},
"devDependencies": {
"@types/express": "4.11.0",
"@types/node": "10.0.3",
"@types/request": "2.47.0",
"@types/snowboy": "1.2.0",
"awesome-typescript-loader": "3.4.1",
"cspell": "4.0.7",
"docsify-cli": "4.3.0",
"prettier": "1.10.2",
"tslint": "5.1.0",
"typescript": "2.5.2",
"webpack": "4.4.1",
"webpack-cli": "2.1.1",
"webpack-node-externals": "1.6.0"
}
}