-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.88 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
{
"name": "ringcentral-ai-bot",
"version": "0.8.1",
"description": "POC of ringcentral glip ai bot",
"main": "lambda/handler.js",
"scripts": {
"test": "npm run test",
"build": "node bin/build",
"deploy": "node bin/deploy",
"compile": "node bin/compile",
"compile-server": "node bin/compile-server",
"prod-server": "NODE_ENV=production node server/run-dev-server.js",
"proxy": "ngrok http 7867",
"docs": "cd docs && npx saurus author",
"watch": "cd lambda && serverless logs -f bot -t",
"deploy-to-aws": "node bin/deploy-to-aws",
"update-to-aws": "node bin/update-to-aws",
"u": "npm run update-to-aws",
"s:watch": "cd lambda && ../node_modules/.bin/serverless logs -f hello -t",
"lint": "./node_modules/.bin/eslint --max-warnings 0 --ext .js src",
"start": "npm run dev",
"dev": "node ./src/server/run-dev-server"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:ringcentral-tutorials/ringcentral-ai-bot.git"
},
"keywords": [
"ringcentral",
"bot",
"ai",
"tutorial"
],
"author": "Drake Zhao <drake.zhao@ringcentral.com>",
"license": "MIT",
"homepage": "https://github.com/ringcentral-tutorials/ringcentral-ai-bot#readme",
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"babel-eslint": "8.2.3",
"babel-plugin-import": "1.7.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-runtime": "6.23.0",
"cross-env": "5.1.6",
"dotenv": "6.1.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-standard": "11.0.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-plugin-compat": "2.2.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-react": "7.8.2",
"eslint-plugin-standard": "3.1.0",
"git-rev-sync": "1.12.0",
"koa": "2.5.1",
"koa-bodyparser": "4.2.1",
"koa-compress": "3.0.0",
"koa-conditional-get": "2.0.0",
"koa-etag": "3.0.0",
"koa-logger": "3.2.0",
"koa-mount": "3.0.0",
"koa-pug-global": "3.0.0-2",
"koa-router": "7.4.0",
"koa-static": "4.0.3",
"ngrok": "3.1.0",
"recursive-assign": "0.2.0",
"serverless": "1.32.0",
"shelljs": "0.8.2",
"viewsaurus-ringcentral": "^0.4.7"
},
"dependencies": {
"@babel/runtime": "7.1.2",
"audio-analysis-service": "0.1.2",
"aws-sdk": "^2.342.0",
"bluebird": "3.5.2",
"lodash": "4.17.11",
"ringcentral-js-concise": "0.6.2",
"subx": "0.7.0"
}
}