-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.7 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
{
"name": "glip-integration-trello",
"version": "0.5.0",
"description": "RingCentral notification app for Trello",
"keywords": [
"RingCentral",
"Trello",
"Notification"
],
"scripts": {
"ngrok": "ngrok http 6066",
"server": "node ./src/run-server.js",
"start": "npm run server",
"test": "jest",
"test-dynamodb": "DB=dynamodb jest --runInBand --forceExit",
"test-coverage": "jest --coverage",
"dynamo-local": "node ./scripts/dynamo-local.js",
"initDB": "node ./scripts/init-db",
"webpack-server": "webpack-dev-server --config webpack-dev-server.config.js",
"webpack-build": "NODE_ENV=production webpack --config webpack-production.config.js",
"serverless-build": "node ./scripts/serverless-build",
"serverless-deploy": "node ./scripts/serverless-deploy",
"build": "npm run webpack-build && npm run serverless-build",
"deploy": "npm run serverless-deploy"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-proposal-export-default-from": "^7.24.1",
"@babel/plugin-proposal-function-bind": "^7.24.1",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1",
"@babel/plugin-transform-optional-chaining": "^7.24.1",
"@babel/plugin-transform-private-property-in-object": "^7.24.1",
"@babel/plugin-transform-private-methods": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@aws-sdk/client-dynamodb": "^3.490.0",
"@ringcentral/juno": "^1.12.5",
"babel-loader": "^8.1.0",
"dynamodb-local": "~0.0.34",
"jest": "^27.0.6",
"mixpanel-browser": "2.48.1",
"ngrok": "^4.3.0",
"nock": "^13.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ringcentral-notification-integration-helper": "^0.4.2",
"serverless": "^3.21.0",
"serverless-deployment-bucket": "^1.6.0",
"shelljs": "^0.8.5",
"sqlite3": "^5.1.5",
"styled-components": "^5.3.3",
"supertest": "^6.1.6",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"whatwg-fetch": "^2.0.3"
},
"dependencies": {
"adaptive-expressions": "^4.18.0",
"adaptivecards-templating": "^2.1.0",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"dotenv": "6.2.0",
"dynamo-sequelize": "^3.1.0",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.0",
"mixpanel": "^0.18.0",
"morgan": "^1.10.0",
"nanoid": "^3.2.0",
"pug": "^3.0.3",
"qs": "^6.7.3",
"ringcentral-chatbot-core": "^1.6.1",
"sequelize": "^6.29.0",
"serverless-http": "^2.6.0"
}
}