forked from ringcentral/github-add-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.98 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
{
"name": "glip-integration-github",
"version": "1.2.4",
"description": "glip-integration-github",
"keywords": [
"RingCentral",
"Add-in",
"GitHub"
],
"scripts": {
"ngrok": "ngrok http -region ap 6066",
"start": "node -r @babel/register -r dotenv/config ./src/server/run-server.js",
"deploy": "npm run build-lambda && npm run deploy-lambda",
"compile": "babel src/server --out-dir dist/server",
"c": "webpack serve --config build/webpack.config.js",
"build": "npm run clean && npm run compile",
"view": "node cmds/view.js",
"clean": "node cmds/clean.js",
"build-lambda": "npm run clean && node cmds/build && npm run view",
"deploy-lambda": "node cmds/deploy",
"watch": "cd serverless-deploy && ../node_modules/.bin/sls logs -f app -t",
"lint": "./node_modules/.bin/standard",
"fix": "./node_modules/.bin/standard --fix",
"dynamo": "node -r @babel/register -r dotenv/config cmds/dynamo-local"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/register": "^7.17.0",
"@electerm/antd-dayjs-webpack-plugin": "^1.0.7",
"@electerm/pug-html-loader": "^1.1.6",
"antd": "^4.17.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-import": "^1.13.3",
"babel-plugin-lodash": "^3.3.4",
"classnames": "^2.3.1",
"cross-env": "^7.0.2",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"csv": "^6.0.5",
"dynamodb-local": "0.0.31",
"file-loader": "^6.2.0",
"json-deep-copy": "^1.1.6",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "0.9.0",
"ngrok": "^4.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ringcentral-notification-integration-helper": "^0.4.2",
"serverless": "^2.69.1",
"serverless-deployment-bucket": "^1.5.1",
"shelljs": "^0.8.4",
"standard": "14.3.1",
"style-loader": "^3.3.1",
"stylus": "^0.56.0",
"stylus-loader": "^6.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {
"@octokit/core": "^3.1.2",
"@octokit/oauth-app": "^1.2.0",
"@ringcentral/sdk": "^4.6.1",
"express-basic-auth": "^1.2.0",
"express-jwt": "^6.0.0",
"glip-integration-js": "^0.2.0",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.1.25",
"pug": "^3.0.0",
"ringcentral-chatbot-core": "^1.2.0",
"serverless-http": "^2.6.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"*-compiled.js",
"dist",
"external"
]
}
}