|
1 | 1 | { |
2 | 2 | "name": "ts-pg-orm", |
3 | | - "version": "5.0.1", |
| 3 | + "version": "5.1.0", |
4 | 4 | "description": "Typescript PostgreSQL ORM", |
5 | 5 | "main": "dist/index.js", |
6 | 6 | "types": "dist/index.d.ts", |
|
27 | 27 | "tests": "npm run clean-tests && npm run build-tests && npm run run-tests", |
28 | 28 | "tests-ci": "npm run clean-tests && npm run build-tests && npm run run-tests-ci", |
29 | 29 |
|
30 | | - "lint": "eslint -c .eslintrc.json ./src --ext .ts,.tsx", |
31 | | - "lint-errors-only": "eslint -c .eslintrc.json ./src --ext .ts,.tsx --quiet", |
| 30 | + "lint": "eslint -c .eslintrc.json ./src --ext .ts", |
| 31 | + "lint-errors-only": "eslint -c .eslintrc.json ./src --ext .ts --quiet", |
32 | 32 |
|
33 | | - "clean": "rimraf ./dist", |
34 | | - "build-ts": "npm run clean && tsc -p ./tsconfig.dist.json", |
| 33 | + "clean-ts-dist": "rimraf ./dist", |
| 34 | + "build-ts-dist": "npm run clean-ts-dist && tsc -p ./tsconfig.dist.json", |
35 | 35 |
|
36 | | - "check": "npm rum lint-errors-only && npm run build-ts && npm run tests && echo Done!", |
37 | | - |
38 | | - "start": "tsc -p ./src/tsconfig.json --watch", |
| 36 | + "clean-ts": "rimraf ./build-ts", |
| 37 | + "build-ts": "npm run clean-ts && tsc -p ./tsconfig.all.json", |
39 | 38 |
|
40 | 39 | "clean-examples": "rimraf ./build-examples", |
41 | 40 | "build-examples": "tsc -p ./tsconfig.examples.json", |
|
44 | 43 | "article-api": "npm run clean-examples && npm run build-examples && npm run run-article-api", |
45 | 44 | "real-db-test": "npm run clean-examples && npm run build-examples && npm run run-real-db-test", |
46 | 45 |
|
47 | | - "clean-all": "npm run clean-unit-tests && npm run clean-integration-tests && npm run clean && npm run clean-examples" |
| 46 | + "clean": "npm run clean-unit-tests && npm run clean-integration-tests && npm run clean-ts && npm run clean-ts-dist && npm run clean-examples", |
| 47 | + |
| 48 | + "check": "npm rum lint-errors-only && npm run build-ts && npm run tests && echo Done!" |
48 | 49 | }, |
49 | 50 | "repository": "https://github.com/samhuk/ts-pg-orm", |
50 | 51 | "author": "", |
|
55 | 56 | "dependencies": { |
56 | 57 | "@samhuk/data-filter": "^1.1.1", |
57 | 58 | "@samhuk/data-query": "^1.2.1", |
58 | | - "simple-pg-client": "^1.0.5" |
| 59 | + "simple-pg-client": "^1.1.0" |
59 | 60 | }, |
60 | 61 | "devDependencies": { |
61 | | - "@types/jest": "^28.1.1", |
62 | | - "@types/node": "^17.0.19", |
| 62 | + "@types/jest": "^29.1.2", |
| 63 | + "@types/node": "^18.8.3", |
63 | 64 | "@types/pg": "^8.6.5", |
64 | | - "@typescript-eslint/eslint-plugin": "^5.12.1", |
65 | | - "@typescript-eslint/parser": "^5.12.1", |
66 | | - "babel-jest": "^28.1.1", |
67 | | - "concurrently": "^7.0.0", |
| 65 | + "@typescript-eslint/eslint-plugin": "^5.40.0", |
| 66 | + "@typescript-eslint/parser": "^5.40.0", |
| 67 | + "babel-jest": "^29.1.2", |
| 68 | + "concurrently": "^7.4.0", |
68 | 69 | "env-cmd": "^10.1.0", |
69 | | - "eslint": "^8.9.0", |
| 70 | + "eslint": "^8.25.0", |
70 | 71 | "eslint-config-airbnb": "^19.0.4", |
71 | | - "eslint-plugin-import": "^2.25.4", |
72 | | - "eslint-plugin-jsx-a11y": "^6.5.1", |
73 | | - "eslint-plugin-react": "^7.30.1", |
74 | | - "jest": "^28.1.1", |
| 72 | + "eslint-plugin-import": "^2.26.0", |
| 73 | + "eslint-plugin-jsx-a11y": "^6.6.1", |
| 74 | + "eslint-plugin-react": "^7.31.9", |
| 75 | + "jest": "^29.1.2", |
75 | 76 | "rimraf": "^3.0.2", |
76 | | - "ts-jest": "^28.0.4", |
77 | | - "typescript": "^4.5.5" |
| 77 | + "ts-jest": "^29.0.3", |
| 78 | + "typescript": "^4.8.4" |
78 | 79 | } |
79 | 80 | } |
0 commit comments