forked from goldbergyoni/nodejs-testing-best-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.9 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
{
"name": "integration-test-a-z",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest",
"test:dev": "jest --watch --silent --runInBand",
"test:dev:debug": "node --inspect=9229 node_modules/.bin/jest --watch --runInBand --silent",
"test:nestjs": "jest --config='./recipes/nestjs/ts-jest.config.js'",
"test:dev:verbose": "jest --watch --verbose",
"test:mocha": "mocha recipes/mocha/basic-tests.test.js --exit --require recipes/mocha/hooks.js",
"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": {
"@nestjs/common": "^7.6.17",
"@nestjs/core": "^7.6.17",
"@nestjs/platform-express": "^7.6.17",
"@types/amqplib": "^0.8.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/nock": "^11.1.0",
"amqplib": "^0.8.0",
"axios": "^0.20.0",
"axios-retry": "^3.1.9",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.1.0",
"sequelize": "^6.3.4"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"docker-compose": "^0.23.1",
"eslint": "^7.18.0",
"is-ci": "^2.0.0",
"is-port-reachable": "^3.0.0",
"jest": "^26.5.2",
"jest-openapi": "^0.11.0",
"jest-silent-reporter": "^0.2.1",
"jest-watch-master": "^1.0.0",
"jest-watch-repeat": "^2.0.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config": "^2.0.1",
"jest-watch-typeahead": "^0.6.0",
"mocha": "^9.0.1",
"nock": "^13.0.4",
"npm": "^6.13.4",
"prettier": "2.2.1",
"sequelize-cli": "^6.2.0",
"sinon": "^9.0.1",
"ts-jest": "^26.5.6",
"typescript": "^4.3.2",
"umzug": "^2.2.0"
}
}