forked from howdyai/botkit-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "botkit-cms",
"version": "0.0.3",
"description": "an open tool for designing, building and managing interactive dialog systems",
"license": "MIT",
"keywords": [
"bots",
"dialog editor",
"content management",
"botkit",
"chatbots",
"bot"
],
"homepage": "https://github.com/howdyai/botkit-cms",
"main": "src/api.js",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/howdyai/botkit-cms.git"
},
"bugs": {
"url": "https://github.com/howdyai/botkit-cms/issues"
},
"scripts": {
"start": "node index.js",
"build": "./node_modules/gulp/bin/gulp.js",
"gulp": "./node_modules/gulp/bin/gulp.js",
"eslint": "./node_modules/eslint/bin/eslint.js js/ src/ components/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.17.2",
"debug": "^2.6.8",
"dotenv": "^6.0.0",
"express": "^4.15.3",
"express-basic-auth": "^1.1.5",
"express-hbs": "^1.0.4",
"querystring": "^0.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.7.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^4.0.2",
"gulp-util": "^3.0.7"
}
}