This repository has been archived on 2021-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
RealtimeDB-OLD/package.json

46 lines
1.3 KiB
JSON

{
"name": "@hibas123/realtimedb",
"version": "2.0.0-beta.22",
"description": "",
"main": "lib/index.js",
"private": true,
"scripts": {
"start": "node lib/index.js",
"build": "tsc",
"watch": "nodemon -e ts --exec ts-node src/index.ts",
"build-docker": "npm run build && docker build -t realtimedb .",
"prepublishOnly": "tsc"
},
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "ISC",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.3",
"@types/koa-router": "^7.4.2",
"@types/leveldown": "^4.0.2",
"@types/levelup": "^4.3.1",
"@types/msgpack5": "^3.4.1",
"@types/node": "^14.17.2",
"@types/ws": "^7.4.4",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@hibas123/logging": "^3.1.2",
"@hibas123/nodelogging": "^3.1.3",
"@hibas123/utils": "^2.2.18",
"dotenv": "^10.0.0",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-router": "^10.0.0",
"leveldown": "^6.0.0",
"levelup": "^5.0.0",
"msgpack5": "^5.3.2",
"nanoid": "^3.1.23",
"ws": "^7.4.6"
}
}