-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.14 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
{
"name": "ringcentral-personal-chatbot-skill-faq",
"version": "1.0.2",
"description": "Bot skill: FAQ, respond to any keywords user defined with corresponding answer",
"main": "dist/server/index.js",
"scripts": {
"ngrok": "ngrok http -region ap 6066",
"ngrok-p": "ngrok http -region ap 4100",
"start": "node -r @babel/register ./node_modules/.bin/rcpf build/test-bot.js",
"c": "./node_modules/.bin/webpack serve --progress --config build/webpack.config.js",
"compile": "babel src/server --out-dir dist/server",
"release": "NODE_ENV=production ./node_modules/.bin/webpack --progress --config build/webpack.config.js",
"p": "node ./node_modules/.bin/rcpf build/test-bot.js",
"dynamo": "node -r @babel/register build/dynamo-local.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",
"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",
"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",
"json-deep-copy": "^1.1.8",
"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.4",
"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": {
"nanoid": "^3.3.3"
},
"peerDependencies": {
"ringcentral-personal-chatbot": "^1.0.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rc-personal-bot-framework/ringcentral-personal-chatbot-skill-faq.git"
},
"bugs": {
"url": "https://github.com/rc-personal-bot-framework/ringcentral-personal-chatbot-skill-faq/issues"
},
"homepage": "https://github.com/rc-personal-bot-framework/ringcentral-personal-chatbot-skill-faq#readme",
"files": [
"dist",
"README.md"
]
}