2019-09-18 19:54:28 +00:00
|
|
|
{
|
2019-09-22 11:13:11 +00:00
|
|
|
"name": "@hibas123/realtimedb",
|
2019-09-18 19:54:28 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"start": "node lib/index.js",
|
|
|
|
"build": "tsc",
|
|
|
|
"watch-ts": "tsc -w",
|
|
|
|
"watch-node": "nodemon --ignore *.ts lib/index.js",
|
|
|
|
"watch": "concurrently \"npm:watch-*\"",
|
2019-10-01 15:45:38 +00:00
|
|
|
"build-docker": "npm run build && docker build -t realtimedb .",
|
2019-09-18 19:54:28 +00:00
|
|
|
"prepublishOnly": "tsc"
|
|
|
|
},
|
|
|
|
"author": "Fabian Stamm <dev@fabianstamm.de>",
|
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
2019-10-01 15:45:38 +00:00
|
|
|
"@types/dotenv": "^6.1.1",
|
2019-09-18 19:54:28 +00:00
|
|
|
"@types/ini": "^1.3.30",
|
2019-10-10 10:28:44 +00:00
|
|
|
"@types/jsonwebtoken": "^8.3.4",
|
|
|
|
"@types/koa": "^2.0.50",
|
|
|
|
"@types/koa-router": "^7.0.42",
|
2019-09-18 19:54:28 +00:00
|
|
|
"@types/leveldown": "^4.0.0",
|
|
|
|
"@types/levelup": "^3.1.1",
|
2019-10-10 10:28:44 +00:00
|
|
|
"@types/node": "^12.7.12",
|
2019-09-18 19:54:28 +00:00
|
|
|
"@types/shortid": "0.0.29",
|
2019-10-10 10:28:44 +00:00
|
|
|
"@types/ws": "^6.0.3",
|
|
|
|
"concurrently": "^5.0.0",
|
|
|
|
"nodemon": "^1.19.3",
|
|
|
|
"typescript": "^3.6.4"
|
2019-09-18 19:54:28 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@hibas123/binary-encoder": "^1.0.0",
|
|
|
|
"@hibas123/nodelogging": "^2.1.0",
|
|
|
|
"@hibas123/utils": "^2.1.1",
|
2019-10-01 15:45:38 +00:00
|
|
|
"dotenv": "^8.1.0",
|
2019-10-10 10:28:44 +00:00
|
|
|
"handlebars": "^4.4.3",
|
2019-09-18 19:54:28 +00:00
|
|
|
"ini": "^1.3.5",
|
2019-10-10 10:28:44 +00:00
|
|
|
"jsonwebtoken": "^8.5.1",
|
|
|
|
"koa": "^2.8.2",
|
2019-09-18 19:54:28 +00:00
|
|
|
"koa-body": "^4.1.1",
|
|
|
|
"koa-router": "^7.4.0",
|
2019-10-10 10:28:44 +00:00
|
|
|
"leveldown": "^5.3.0",
|
|
|
|
"levelup": "^4.3.2",
|
2019-09-18 19:54:28 +00:00
|
|
|
"shortid": "^2.2.15",
|
2019-10-10 10:28:44 +00:00
|
|
|
"ws": "^7.1.2"
|
2019-09-18 19:54:28 +00:00
|
|
|
}
|
2019-10-10 10:28:44 +00:00
|
|
|
}
|