@volontariapp/workers 0.1.0-snap-c4aad21 → 0.1.0-snap-4078475

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +10 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volontariapp/workers",
3
- "version": "0.1.0-snap-c4aad21",
3
+ "version": "0.1.0-snap-4078475",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -32,7 +32,11 @@
32
32
  "lint": "eslint src/",
33
33
  "test": "node --experimental-vm-modules $(yarn bin jest)",
34
34
  "test:coverage": "node --experimental-vm-modules $(yarn bin jest) --coverage --coverageReporters=\"text\" --coverageReporters=\"json-summary\" --coverageReporters=\"lcov\"",
35
- "test:watch": "node --experimental-vm-modules $(yarn bin jest) --watch"
35
+ "test:watch": "node --experimental-vm-modules $(yarn bin jest) --watch",
36
+ "test:int": "INTEGRATION=true node --experimental-vm-modules $(yarn bin jest)",
37
+ "test:int:watch": "INTEGRATION=true node --experimental-vm-modules $(yarn bin jest) --watch",
38
+ "db:up": "docker compose -f ../../ci-tools/testing/docker-compose.yml --profile test up -d test-db redis",
39
+ "db:down": "docker compose -f ../../ci-tools/testing/docker-compose.yml --profile test stop test-db redis"
36
40
  },
37
41
  "dependencies": {
38
42
  "@volontariapp/config": "3.0.1",
@@ -50,10 +54,14 @@
50
54
  "@nestjs/common": "^11.0.0",
51
55
  "@types/jest": "^30.0.0",
52
56
  "@types/node": "^24.0.0",
57
+ "@volontariapp/database": "1.15.1",
53
58
  "@volontariapp/testing": "1.0.0",
54
59
  "bullmq": "^5.76.5",
60
+ "ioredis": "^5.3.7",
55
61
  "jest": "^30.3.0",
62
+ "pg": "^8.11.5",
56
63
  "ts-jest": "^29.4.6",
64
+ "typeorm": "^0.3.21",
57
65
  "typescript": "5.7.3"
58
66
  }
59
67
  }