-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.89 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
{
"name": "ringcentral-personal-chatbot-skill-fuzzy-matching-faq",
"version": "0.1.0",
"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": "webpack-dev-server --open --progress --colors --config build/webpack.config.babel.js",
"compile": "babel src/server --out-dir dist/server",
"release": "cross-env NODE_ENV=production ./node_modules/.bin/webpack --progress --colors --config build/webpack.config.babel.js",
"p": "node ./node_modules/.bin/rcpf build/test-bot.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"
},
"keywords": [
"RingCentral",
"Chatbot",
"AI"
],
"author": "Drake Zhao <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"antd": "^3.18.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-import": "^1.11.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.6.0",
"ngrok": "^3.1.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react-subx": "^0.4.9",
"serverless": "^1.35.1",
"shelljs": "^0.8.3",
"standard": "^12.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"subx": "^0.7.3",
"url-loader": "^1.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"yarn-upgrade-all": "^0.5.0"
},
"dependencies": {
"fuse.js": "3.4.4",
"json-deep-copy": "^1.0.2",
"pug": "^2.0.3",
"shortid": "^2.2.14"
},
"peerDependencies": {
"ringcentral-personal-chatbot": "0.3.15"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rc-personal-bot-framework/ringcentral-personal-chatbot-skill-fuzzy-matching-faq.git"
},
"bugs": {
"url": "https://github.com/rc-personal-bot-framework/ringcentral-personal-chatbot-skill-fuzzy-matching-faq/issues"
},
"homepage": "https://github.com/rc-personal-bot-framework/ringcentral-personal-chatbot-skill-fuzzy-matching-faq#readme"
}