-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
{
"name": "assisted-listener-executing-xhr",
"version": "1.0.0",
"description": "Alex is client and Server side API to create a robust personal voice assistant.",
"main": "client.js",
"scripts": {
"test": "npm run dev",
"dev": "npm run build && npm run start",
"start": "npm run start.server | npm run start.client",
"build": "npm run build.client && npm run build.server",
"start.server": "node test.server.js",
"start.client": "webpack-dev-server --config src/client.config.js --mode development --open",
"build.client": "webpack --config src/client.config.js --mode production --clean true",
"build.server": "webpack --config src/server.config.js --mode production --clean false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drolsen/alex.git"
},
"keywords": [
"voice",
"commands",
"voice",
"commands",
"xhr",
"ajax",
"text",
"to",
"speech"
],
"author": "Devin R. Olsen",
"license": "ISC",
"bugs": {
"url": "https://github.com/drolsen/alex/issues"
},
"homepage": "https://github.com/drolsen/alex#readme",
"dependencies": {
"annyang": "^2.6.1",
"express": "^4.16.4",
"find-in-files": "^0.5.0",
"node-wikipedia": "0.0.2",
"number-to-words": "^1.2.4",
"opn": "^5.4.0",
"recursive-readdir": "^2.2.2",
"say": "^0.15.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel": "^6.23.0",
"babel-loader": "^8.0.5",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"clean-webpack-plugin": "^1.0.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14",
"webpack-node-externals": "^1.7.2"
}
}