-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathpackage.json
76 lines (76 loc) · 2.33 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "integration-test-a-z",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest",
"test:dev": "jest --watch --silent --maxWorkers=2 --verbose=false",
"test:dev:debug": "node --inspect=9229 node_modules/.bin/jest --watch --runInBand",
"test:nestjs": "jest --config='./recipes/nestjs/ts-jest.config.js' basic-nest-tests.test.ts",
"test:dev:verbose": "jest --watch --verbose",
"lint": "eslint .",
"db:migrate": "cd example-application/data-access && sequelize-cli db:migrate",
"db:seed": "cd example-application/data-access && sequelize-cli db:seed:all"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-sqs": "^3.712.0",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/platform-express": "^10.4.15",
"@pulumi/pulumi": "^3.143.0",
"@pulumi/rabbitmq": "^3.3.8",
"@types/amqplib": "^0.10.6",
"@types/aws-sdk": "^2.7.0",
"@types/jsonwebtoken": "^9.0.7",
"amqplib": "^0.10.5",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"body-parser": "^1.20.3",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"sequelize": "^6.37.5"
},
"devDependencies": {
"@faker-js/faker": "^9.3.0",
"@types/chai": "^5.0.1",
"@types/chai-subset": "^1.3.5",
"@types/colors": "^1.2.4",
"@types/date-fns": "^2.6.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"aws-sdk-client-mock": "^4.1.0",
"chai": "^5.1.2",
"chai-subset": "^1.6.0",
"colors": "^1.4.0",
"date-fns": "^4.1.0",
"docker-compose": "^1.1.0",
"eslint": "^9.17.0",
"is-ci": "^4.1.0",
"is-port-reachable": "^3.1.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-openapi": "^0.14.2",
"jest-silent-reporter": "^0.6.0",
"jest-watch-master": "^1.0.0",
"jest-watch-repeat": "^3.0.1",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config": "^3.0.0",
"jest-watch-typeahead": "^2.2.2",
"mocha": "^11.0.1",
"nock": "^13.5.6",
"node-notifier": "^10.0.1",
"npm-check-updates": "^17.1.11",
"prettier": "3.4.2",
"sequelize-cli": "^6.6.2",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"umzug": "^3.8.2"
}
}