-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "yee-voice",
"version": "0.1.0",
"description": "Yeelight devices voice control project.",
"main": "server.js",
"scripts": {
"stop": "pkill --signal SIGTERM npm",
"build": "babel src -d dist",
"run": "npm install && npm run build && npm start -- ./server.js",
"run-dev": "npm install && npm run build && DEBUG=express:* nodemon ./server.js --exec babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ybutb/yee-voice.git"
},
"keywords": [
"IoT",
"yeelight"
],
"author": "ybutb88@gmail.com",
"license": "GPL",
"bugs": {
"url": "https://github.com/ybutb/yee-voice/issues"
},
"homepage": "https://github.com/ybutb/yee-voice#readme",
"dependencies": {
"babel": "6.0.0",
"babel-cli": "6.23.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"cmake-js": "3.6.1",
"express": "4.16.3",
"mic-to-speech": "git+https://github.com/natelewis/mic-to-speech",
"pocketsphinx": "5.0.7",
"yeelight-wifi": "2.3.0"
},
"devDependencies": {
"nodemon": "1.18.3"
}
}