-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 3.49 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
111
112
113
114
{
"name": "ringcentral-personal-chatbot",
"version": "1.1.1",
"description": "RingCentral personal chatbot framework",
"main": "dist/server/index.js",
"bin": {
"rcpf": "bin/rcpf.js",
"ringcentral-personal-chatbot": "bin/rcpf.js"
},
"scripts": {
"ngrok": "ngrok http -region ap 6066",
"ngrok-p": "ngrok http -region ap 4100",
"start": "node -r @babel/register bin/rcpf.js example-bots/hello-bot-with-skills.js",
"c": "webpack serve --config build/webpack.config.js",
"compile": "babel src/server --out-dir dist/server",
"release": "NODE_ENV=production ./node_modules/.bin/webpack --config build/webpack.config.js",
"p": "cross-env NODE_ENV=production node bin/rcpf.js example-bots/hello.js",
"view": "node build/view.js",
"build": "npm run clean && npm run compile && npm run release && npm run view",
"clean": "node build/clean.js",
"prepublishOnly": "npm run build",
"dynamo": "node -r @babel/register build/dynamo-local.js",
"lint": "./node_modules/.bin/standard",
"fix": "./node_modules/.bin/standard --fix"
},
"keywords": [
"RingCentral",
"Chatbot",
"AI"
],
"author": "Drake Zhao <drake.zhao@ringcentral.com>",
"license": "MIT",
"devDependencies": {
"@ant-design/icons": "4.7.0",
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.9",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/register": "7.17.7",
"@electerm/antd-dayjs-webpack-plugin": "1.0.7",
"@electerm/pug-html-loader": "1.1.6",
"antd": "4.19.5",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.4",
"babel-plugin-import": "1.13.3",
"babel-plugin-lodash": "3.3.4",
"classnames": "2.3.1",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "3.4.1",
"dayjs": "1.11.0",
"dotenv": "10.0.0",
"dynamodb-local": "0.0.31",
"file-loader": "6.2.0",
"less": "4.1.2",
"less-loader": "10.2.0",
"mini-css-extract-plugin": "2.6.0",
"ngrok": "4.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"serverless": "3.12.0",
"serverless-deployment-bucket": "1.5.2",
"shelljs": "0.8.5",
"standard": "16.0.4",
"style-loader": "3.3.1",
"stylus": "0.56.0",
"stylus-loader": "6.2.0",
"url-loader": "4.1.1",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"dependencies": {
"@babel/runtime": "7.17.9",
"@rc-ex/authorize-uri": "0.8.5",
"@rc-ex/core": "0.12.4",
"@rc-ex/retry": "0.8.2",
"commander": "2.20.3",
"dynamo-sequelize": "3.0.0",
"express": "4.17.3",
"express-basic-auth": "^1.2.1",
"express-jwt": "6.1.1",
"json-deep-copy": "1.1.6",
"jsonwebtoken": "8.5.1",
"morgan": "1.10.0",
"nanoid": "3.3.2",
"pug": "3.0.2",
"sequelize": "6.19.0",
"timeout-as-promise": "1.0.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"*-compiled.js",
"/dist/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-personal-chatbot-js.git"
},
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-personal-chatbot-js/issues"
},
"homepage": "https://github.com/ringcentral/ringcentral-personal-chatbot-js#readme",
"files": [
"bin",
"dist",
"README.md"
]
}