gradido/dht-node/package.json
2025-05-07 16:11:38 +02:00

50 lines
1.4 KiB
JSON

{
"name": "dht-node",
"version": "2.5.2",
"description": "Gradido dht-node module",
"main": "src/index.ts",
"repository": "https://github.com/gradido/gradido/",
"author": "Gradido Academy - https://www.gradido.net",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "tsx esbuild.config.ts",
"start": "cross-env TZ=UTC node build/index.js",
"dev": "cross-env TZ=UTC tsx watch src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check --error-on-warnings .",
"lint:fix": "biome check --error-on-warnings . --write",
"test": "cross-env TZ=UTC NODE_ENV=development DB_DATABASE=gradido_test_dht jest --runInBand --forceExit --detectOpenHandles"
},
"dependencies": {
"@hyperswarm/dht": "^6.4.4",
"config-schema": "*",
"cross-env": "^7.0.3",
"database": "*",
"dotenv": "10.0.0",
"joi": "^17.13.3",
"log4js": "^6.7.1",
"nodemon": "^2.0.20",
"tsconfig-paths": "^4.1.2",
"typeorm": "^0.3.16",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "27.5.1",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"@biomejs/biome": "1.9.4",
"@types/dotenv": "^8.2.0",
"@types/joi": "^17.2.3",
"esbuild": "^0.25.2",
"jest": "27.5.1",
"prettier": "^2.8.7",
"tsx": "^4.19.3",
"ts-jest": "27.1.4",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18"
}
}