bigbluebutton-Github/bbb-graphql-actions/package.json

40 lines
1.1 KiB
JSON

{
"name": "bbb-graphql-actions",
"version": "0.0.1",
"description": "A server component designed to interface between Hasura GraphQL actions and BigBlueButton ecosystem.",
"main": "index.ts",
"scripts": {
"start": "nodemon --watch src --ext ts,json --exec ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigbluebutton/bigbluebutton/tree/develop/bbb-graphql-actions"
},
"keywords": [
"bigbluebutton",
"graphql",
"actions"
],
"author": "BigBlueButton Inc.",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/bigbluebutton/bigbluebutton/issues"
},
"homepage": "https://github.com/bigbluebutton/bigbluebutton/tree/develop/bbb-graphql-actions#readme",
"dependencies": {
"@types/express": "^4.17.18",
"@types/node": "^20.7.0",
"@types/redis": "^4.0.11",
"axios": "^0.21.1",
"express": "^4.17.1",
"redis": "^4.6.10"
},
"devDependencies": {
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}