-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"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.2.2",
"@pretendonetwork/grpc": "^2.3.5",
"@typegoose/auto-increment": "^4.13.1",
"commander": "^14.0.0",
"cron": "^4.3.3",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"formidable": "^3.5.4",
"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/express": "^4.17.21",
"@types/formidable": "^3.4.5",
"@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"
}
}