-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.51 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "queuedb",
"version": "2.0.1",
"bin": {
"qdb": "./bin/qdb.js"
},
"description": "A lightweight and fast queue database server with WebSocket support for real-time data streaming",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"_moduleAliases": {
"@": "dist"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "node dist/app.js",
"dev": "ts-node -r tsconfig-paths/register src/app.ts",
"dev:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' -r tsconfig-paths/register src/app.ts",
"build": "tsc",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"database",
"websocket",
"queue",
"streaming",
"realtime",
"typescript",
"nodejs"
],
"author": "Emmanuel Bankole",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codewithdripzy/qdb-server.git"
},
"bugs": {
"url": "https://github.com/codewithdripzy/qdb-server/issues"
},
"homepage": "https://github.com/codewithdripzy/qdb-server#readme",
"devDependencies": {
"@types/node": "^22.13.14",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.2"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/sqlite3": "^5.1.0",
"@types/ws": "^8.18.0",
"auth-validify": "^1.0.5",
"bcrypt": "^5.1.1",
"commander": "^14.0.2",
"module-alias": "^2.2.3",
"sqlite3": "^5.1.7",
"ws": "^8.18.1"
}
}