|
7 | 7 | "license": "UNLICENSED", |
8 | 8 | "type": "module", |
9 | 9 | "bin": "./dist/main.js", |
10 | | - "packageExtensions": { |
11 | | - "ibm_db": { |
12 | | - "dependencies": { |
13 | | - "node-gyp": "^10.2.0" |
14 | | - } |
15 | | - } |
16 | | - }, |
17 | 10 | "scripts": { |
18 | 11 | "prebuild": "rimraf dist", |
19 | 12 | "build": "tsc -p tsconfig.build.json", |
|
22 | 15 | "start:dev": "tsc -p tsconfig.build.json && node dist/main.js", |
23 | 16 | "start:debug": "node --inspect dist/main.js", |
24 | 17 | "start:prod": "node dist/main.js", |
25 | | - "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", |
26 | | - "test": "jest --runInBand", |
27 | | - "test:watch": "jest --watch", |
28 | | - "test:cov": "jest --coverage", |
29 | | - "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
30 | | - "test:e2e": "jest --config ./test/jest-e2e.json" |
| 18 | + "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix" |
31 | 19 | }, |
32 | 20 | "dependencies": { |
33 | 21 | "@azure/core-tracing": "^1.3.1", |
34 | 22 | "@rocketadmin/shared-code": "workspace:*", |
35 | | - "@types/pg": "^8.15.6", |
36 | 23 | "argon2": "^0.44.0", |
37 | 24 | "chalk": "^5.6.2", |
38 | 25 | "commander": "^14.0.2", |
39 | 26 | "crypto-js": "^4.2.0", |
40 | 27 | "dotenv": "^17.2.3", |
41 | | - "get-port": "^7.1.0", |
42 | 28 | "inquirer": "^13.0.2", |
43 | | - "knex": "3.1.0", |
44 | | - "mongodb": "^6.20.0", |
45 | | - "mysql2": "^3.15.3", |
46 | 29 | "ora": "^9.0.0", |
47 | | - "oracledb": "^6.10.0", |
48 | | - "pg": "^8.16.3", |
49 | 30 | "rimraf": "^6.0.1", |
50 | | - "ssh2": "^1.17.0", |
51 | | - "tedious": "^18.6.1", |
52 | 31 | "wait-on": "^9.0.1", |
53 | 32 | "winston": "^3.18.3", |
54 | 33 | "ws": "^8.18.3", |
55 | 34 | "yarn": "^1.22.22" |
56 | 35 | }, |
57 | | - "optionalDependencies": { |
58 | | - "ibm_db": "3.3.0" |
59 | | - }, |
60 | 36 | "devDependencies": { |
61 | 37 | "@types/inquirer": "^9.0.9", |
62 | | - "@types/jest": "^30.0.0", |
63 | 38 | "@types/node": "^24.9.1", |
64 | | - "@types/supertest": "^6.0.3", |
65 | 39 | "@types/ws": "^8.18.1", |
66 | 40 | "@typescript-eslint/eslint-plugin": "^8.46.2", |
67 | 41 | "@typescript-eslint/parser": "^8.46.2", |
68 | 42 | "eslint": "^9.38.0", |
69 | 43 | "eslint-config-prettier": "^10.1.8", |
70 | 44 | "eslint-plugin-prettier": "^5.5.4", |
71 | | - "jest": "^30.2.0", |
72 | 45 | "prettier": "^3.6.2", |
73 | | - "supertest": "^7.1.4", |
74 | | - "ts-jest": "^29.4.5", |
75 | 46 | "ts-loader": "^9.5.4", |
76 | 47 | "ts-node": "^10.9.2", |
77 | 48 | "tsconfig-paths": "^4.2.0", |
78 | 49 | "typescript": "^5.9.3" |
79 | | - }, |
80 | | - "jest": { |
81 | | - "moduleFileExtensions": [ |
82 | | - "js", |
83 | | - "json", |
84 | | - "ts" |
85 | | - ], |
86 | | - "rootDir": ".", |
87 | | - "testRegex": ".spec.ts$", |
88 | | - "transform": { |
89 | | - "^.+\\.(t|j)s$": "ts-jest" |
90 | | - }, |
91 | | - "collectCoverageFrom": [ |
92 | | - "**/*.(t|j)s" |
93 | | - ], |
94 | | - "coverageDirectory": "../coverage", |
95 | | - "testEnvironment": "node" |
96 | 50 | } |
97 | 51 | } |
0 commit comments