BOSS/package.json

49 lines
1.3 KiB
JSON

{
"name": "boss",
"description": "Pretendo BOSS server implementation",
"version": "2.0.0",
"license": "AGPL-3.0-only",
"main": "dist/server.js",
"scripts": {
"dev": "tsup --watch --onSuccess \"node dist/server.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsup && tsc --noEmit",
"start": "node --enable-source-maps dist/server.js",
"cli": "node --enable-source-maps dist/cli/cli.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.723.0",
"@pretendonetwork/boss-crypto": "^1.0.0",
"@pretendonetwork/grpc": "^1.0.6",
"@typegoose/auto-increment": "^4.13.0",
"commander": "^14.0.0",
"dicer": "^0.3.1",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"fs-extra": "^11.2.0",
"moment": "^2.30.1",
"mongoose": "^8.18.1",
"nice-grpc": "^2.1.10",
"pino": "^9.9.1",
"pino-http": "^10.5.0",
"pino-pretty": "^13.1.1",
"undici": "^7.16.0",
"xml-js": "^1.6.11",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@pretendonetwork/eslint-config": "^0.1.1",
"@smithy/types": "^4.0.0",
"@types/dicer": "^0.2.4",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"axios": "^1.7.9",
"eslint": "^9.17.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"xmlbuilder2": "^3.1.1"
}
}