-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "ringcentral-personal-bot-template-js",
"version": "0.1.1",
"description": "Template",
"main": "dist/server/index.js",
"scripts": {
"ngrok": "ngrok http -region ap 4100",
"start": "node -r @babel/register ./node_modules/.bin/rcpf src/server/index.js",
"compile": "babel src/server --out-dir dist/server",
"build": "npm run clean && npm run compile",
"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/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"ngrok": "^3.1.0",
"shelljs": "^0.8.3",
"standard": "^12.0.1",
"yarn-upgrade-all": "^0.5.0"
},
"dependencies": {
"glip-personal-bot-skill-time": "^0.3.3",
"ringcentral-personal-bot-skill-pack-simple": "1.1.2",
"ringcentral-personal-chatbot": "^0.9.9",
"ringcentral-personal-chatbot-skill-faq": "^0.5.2"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/"
]
}
}