|
1 | 1 | { |
2 | 2 | "name": "rocketadmin-agent", |
3 | 3 | "version": "0.0.1", |
4 | | - "description": "", |
5 | | - "author": "", |
| 4 | + "description": "RocketAdmin Agent - Connect your database to RocketAdmin through a secure agent", |
| 5 | + "author": "RocketAdmin", |
6 | 6 | "private": true, |
7 | 7 | "license": "UNLICENSED", |
8 | 8 | "type": "module", |
| 9 | + "bin": "./dist/main.js", |
9 | 10 | "packageExtensions": { |
10 | 11 | "ibm_db": { |
11 | 12 | "dependencies": { |
|
15 | 16 | }, |
16 | 17 | "scripts": { |
17 | 18 | "prebuild": "rimraf dist", |
18 | | - "build": "nest build", |
| 19 | + "build": "tsc -p tsconfig.build.json", |
19 | 20 | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
20 | | - "start": "nest start", |
21 | | - "start:dev": "nest start --watch", |
22 | | - "start:debug": "nest start --debug --watch", |
23 | | - "start:prod": "node dist/main", |
| 21 | + "start": "node dist/main.js", |
| 22 | + "start:dev": "tsc -p tsconfig.build.json && node dist/main.js", |
| 23 | + "start:debug": "node --inspect dist/main.js", |
| 24 | + "start:prod": "node dist/main.js", |
24 | 25 | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", |
25 | 26 | "test": "jest --runInBand", |
26 | 27 | "test:watch": "jest --watch", |
|
30 | 31 | }, |
31 | 32 | "dependencies": { |
32 | 33 | "@azure/core-tracing": "^1.3.1", |
33 | | - "@nestjs/common": "^11.1.8", |
34 | | - "@nestjs/config": "^4.0.2", |
35 | | - "@nestjs/core": "^11.1.8", |
36 | | - "@nestjs/platform-express": "^11.1.8", |
37 | | - "@nestjs/platform-ws": "^11.1.8", |
38 | | - "@nestjs/testing": "^11.1.8", |
39 | 34 | "@rocketadmin/shared-code": "workspace:*", |
40 | 35 | "@types/pg": "^8.15.6", |
41 | 36 | "argon2": "^0.44.0", |
| 37 | + "chalk": "^5.6.2", |
| 38 | + "commander": "^14.0.2", |
42 | 39 | "crypto-js": "^4.2.0", |
| 40 | + "dotenv": "^17.2.3", |
43 | 41 | "get-port": "^7.1.0", |
| 42 | + "inquirer": "^13.0.2", |
44 | 43 | "knex": "3.1.0", |
45 | 44 | "mongodb": "^6.20.0", |
46 | 45 | "mysql2": "^3.15.3", |
| 46 | + "ora": "^9.0.0", |
47 | 47 | "oracledb": "^6.10.0", |
48 | 48 | "pg": "^8.16.3", |
49 | | - "readline-sync": "^1.4.10", |
50 | | - "reflect-metadata": "^0.2.2", |
51 | 49 | "rimraf": "^6.0.1", |
52 | | - "rxjs": "^7.8.2", |
53 | 50 | "ssh2": "^1.17.0", |
54 | 51 | "tedious": "^18.6.1", |
55 | 52 | "wait-on": "^9.0.1", |
56 | 53 | "winston": "^3.18.3", |
| 54 | + "ws": "^8.18.3", |
57 | 55 | "yarn": "^1.22.22" |
58 | 56 | }, |
59 | 57 | "optionalDependencies": { |
60 | 58 | "ibm_db": "3.3.0" |
61 | 59 | }, |
62 | 60 | "devDependencies": { |
63 | | - "@nestjs/cli": "^11.0.10", |
64 | | - "@nestjs/schematics": "^11.0.9", |
65 | | - "@nestjs/testing": "^11.1.8", |
66 | | - "@types/express": "^5.0.5", |
| 61 | + "@types/inquirer": "^9.0.9", |
67 | 62 | "@types/jest": "^30.0.0", |
68 | 63 | "@types/node": "^24.9.1", |
69 | | - "@types/readline-sync": "^1.4.8", |
70 | 64 | "@types/supertest": "^6.0.3", |
| 65 | + "@types/ws": "^8.18.1", |
71 | 66 | "@typescript-eslint/eslint-plugin": "^8.46.2", |
72 | 67 | "@typescript-eslint/parser": "^8.46.2", |
73 | 68 | "eslint": "^9.38.0", |
|
0 commit comments