-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 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
46
47
48
{
"name": "ringcentral-chatbot",
"version": "2.1.5",
"license": "MIT",
"repository": "git@github.com:tylerlong/ringcentral-chatbot-js.git",
"engines": {
"node": ">=14.0"
},
"scripts": {
"test": "RINGCENTRAL_CHATBOT_DATABASE_CONNECTION_URI=sqlite:// jest -c test/jest.config.ts",
"build": "rm -rf dist && yarn tsc",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {
"@rc-ex/core": "^0.13.1",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.4",
"aws-sdk": "^2.1171.0",
"axios": "^0.27.2",
"express": "^4.18.1",
"express-basic-auth": "^1.2.1",
"form-data": "^4.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"sequelize": "^6.21.2",
"supertest": "^6.2.4",
"wait-for-async": "^0.6.0"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/ramda": "^0.28.14",
"gts": "^3.1.0",
"jest": "^28.1.2",
"ramda": "^0.28.0",
"sqlite3": "^5.0.8",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"yarn-upgrade-all": "^0.7.1"
},
"files": [
"dist/*",
"yarn.lock"
]
}