forked from goldbergyoni/testing-workshop-the-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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
{
"name": "getting-started",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"test:dev": "jest --watch --verbose --silent",
"test:dev:verbose": "jest --watch --verbose",
"test:withDocker": "docker run -n myMongo -d mongo -storageEngine inMemory && npm t"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/nock": "^11.1.0",
"@types/node-notifier": "^8.0.2",
"@types/nodemon": "^1.19.2",
"@types/round-to": "^4.0.0",
"@types/supertest": "^2.0.12",
"body-parser": "^1.20.1",
"clear-module": "^4.1.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"import-fresh": "^3.3.0",
"nock": "^13.3.0",
"node-notifier": "^10.0.1",
"nodemon": "^2.0.20",
"round-to": "^5.0.0",
"supertest": "^6.3.3"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/axios": "^0.14.0",
"@types/eslint": "^8.21.1",
"@types/jest": "^29.4.0",
"@types/jest-expect-message": "^1.0.4",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/prettier": "^2.7.2",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.13",
"axios": "^1.3.3",
"countries-list": "^2.6.1",
"decache": "^4.6.1",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-mocha": "^10.1.0",
"faker": "^6.6.6",
"jest": "^29.4.3",
"jest-allure": "^0.1.3",
"jest-expect-message": "^1.1.3",
"jest-extended": "^3.2.4",
"jest-openapi": "^0.14.2",
"jest-tobetype": "^1.2.3",
"jest-watch-directories": "^1.1.0",
"jest-watch-master": "^1.0.0",
"jest-watch-toggle-config": "^2.0.1",
"jest-watch-typeahead": "^2.2.2",
"js-yaml": "^4.1.0",
"mocha": "^10.2.0",
"naughty-strings": "^1.0.0",
"prettier": "^2.8.4",
"proxyquire": "^2.1.3",
"sinon": "^15.0.1"
}
}