-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.27 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
{
"name": "ringcentral-add-in-github-demo",
"version": "0.0.1",
"description": "RingCentral Add-In App",
"keywords": [
"RingCentral",
"Add-In",
"Webhook"
],
"scripts": {
"ngrok": "ngrok http -region us 6066 ",
"server": "node ./src/run-server.js",
"start": "npm run server",
"initDB": "node ./scripts/init-db",
"refreshDB": "node ./scripts/refresh-db",
"client": "webpack-dev-server --config webpack-dev-server.config.js --inline",
"client-build": "set NODE_ENV=production&& webpack --config webpack-production.config.js",
"serverless-build": "node ./scripts/serverless-build",
"serverless-deploy": "node ./scripts/serverless-deploy",
"test": "jest",
"heroku-postbuild": "npm run initDB"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.8.3",
"@material-ui/core": "^4.11.4",
"@ringcentral/juno": "^1.11.1",
"babel-loader": "^8.1.0",
"jest": "^27.2.0",
"ngrok": "^3.3.0",
"nock": "^13.1.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"ringcentral-notification-integration-helper": "^0.4.2",
"serverless": "^2.3.0",
"serverless-deployment-bucket": "^1.3.0",
"shelljs": "^0.8.4",
"sqlite3": "^5.0.0",
"styled-components": "^5.2.0",
"supertest": "^6.1.6",
"webpack": "4.41.6",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"whatwg-fetch": "^2.0.3"
},
"dependencies": {
"@octokit/rest": "^18.10.0",
"adaptive-expressions": "^4.14.1",
"adaptivecards-templating": "^2.1.0",
"axios": "^0.21.1",
"client-oauth2": "^4.3.3",
"dotenv": "6.2.0",
"dynamo-sequelize": "^0.8.1",
"glip-integration-js": "^0.2.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"pug": "^3.0.0",
"sequelize": "^5.22.3",
"serverless-http": "^2.6.0",
"shortid": "2.2.16"
}
}