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

47 lines
1.3 KiB
JSON

{
"name": "@hibas123/realtimedb",
"version": "2.0.0-beta.21",
"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/dotenv": "^8.2.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.6",
"@types/koa-router": "^7.4.1",
"@types/leveldown": "^4.0.2",
"@types/levelup": "^4.3.0",
"@types/nanoid": "^2.1.0",
"@types/node": "^14.14.5",
"@types/ws": "^7.2.8",
"concurrently": "^5.3.0",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@hibas123/nodelogging": "^2.4.5",
"@hibas123/utils": "^2.2.16",
"dotenv": "^8.2.0",
"handlebars": "^4.7.6",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-router": "^9.4.0",
"leveldown": "^5.6.0",
"levelup": "^4.4.0",
"nanoid": "^3.1.16",
"what-the-pack": "^2.0.3",
"ws": "^7.3.1"
}
}