-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "server",
"version": "1.0.0",
"description": "Server for sayhi.ai.",
"main": "start.js",
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/sayhi-ai/server"
},
"keywords": [
"conversational",
"bots",
"natural",
"language",
"human",
"conversation",
"say",
"hi",
"ai",
"artificial",
"intelligence",
"answers",
"responses",
"api",
"make",
"your",
"bot",
"build",
"tool",
"persona",
"for"
],
"tags": [
"conversational",
"bots",
"natural",
"language",
"human",
"conversation",
"say",
"hi",
"ai",
"artificial",
"intelligence",
"answers",
"responses",
"api",
"make",
"your",
"bot",
"build",
"tool",
"persona",
"for"
],
"author": "sayhi-ai",
"license": "GPL",
"bugs": {
"url": "https://bitbucket.org/sayhi-ai/server/issues"
},
"homepage": "https://sayhi.ai",
"engines": {
"npm": ">=3.0.0",
"node": ">=5.0.0"
},
"dependencies": {
"auth-header": "^0.3.1",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"file-stream-rotator": "0.0.7",
"fs": "0.0.1-security",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"jwt-decode": "^2.1.0",
"lokka": "^1.7.0",
"lokka-transport-http": "^1.6.1",
"morgan": "^1.7.0",
"nodemailer": "^2.6.4",
"winston": "^2.3.0",
"winston-daily-rotate-file": "^1.4.0"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-runtime": "^6.5.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.5.0",
"eslint-config-google": "^0.6.0",
"nodemon": "^1.10.2",
"npm-run-all": "^3.1.0",
"webpack": "^1.13.2"
},
"scripts": {
"clean": "rm build",
"lint": "eslint ./src",
"test": "",
"prebuild": "npm-run-all lint test",
"build": "webpack --progress --config tools/webpack.config.prod.js",
"build:dev": "webpack --progress --config tools/webpack.config.dev.js",
"build:dev:watch": "webpack --progress --config tools/webpack.config.dev.js --watch",
"server:dev": "nodemon dev/start.js",
"server:prod": "node build/start.js",
"start": "npm-run-all lint build server:prod",
"dev": "npm-run-all --parallel build:dev:watch server:dev"
}
}