forked from goldbergyoni/component-tests-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.22 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
{
"name": "exercise",
"version": "1.0.0",
"description": "",
"main": "sensors-api.js",
"scripts": {
"start": "./src/index.js",
"test": "jest",
"test:dev": "jest --watch --silent --runInBand",
"test:dev:migrate": "DO_MIGRATION='true' jest --watch --silent --runInBand",
"test:dev:verbose": "jest --watch --runInBand --verbose",
"lint": "eslint .",
"db:migrate": "cd src/data-access && sequelize-cli db:migrate",
"db:migrate:undo": "cd src/data-access && sequelize-cli db:migrate:undo"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/sequelize": "^4.28.9",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"nock": "^13.0.5",
"nodemon": "^2.0.7",
"npm-check-updates": "^10.2.5",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"round-to": "^5.0.0",
"sequelize": "^6.4.0"
},
"devDependencies": {
"@testing-library/react": "^11.2.3",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/eslint": "^7.2.6",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jest-expect-message": "^1.0.3",
"@types/js-yaml": "^4.0.0",
"@types/mocha": "^8.2.0",
"@types/nock": "^11.1.0",
"@types/prettier": "^2.1.6",
"@types/proxyquire": "^1.3.28",
"@types/round-to": "^4.0.0",
"@types/sinon": "^9.0.10",
"docker-compose": "^0.23.6",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-mocha": "^8.0.0",
"faker": "^5.1.0",
"is-port-reachable": "^3.0.0",
"jest": "^26.6.3",
"jest-allure": "^0.1.3",
"jest-expect-message": "^1.0.2",
"jest-extended": "^0.11.5",
"jest-openapi": "^0.11.0",
"jest-tobetype": "^1.2.3",
"jest-watch-directories": "^1.1.0",
"jest-watch-master": "^1.0.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config": "^2.0.1",
"jest-watch-typeahead": "^0.6.1",
"js-yaml": "^4.0.0",
"npm": "^6.14.11",
"prettier": "^2.2.1",
"proxyquire": "^2.1.3",
"sequelize-cli": "^6.2.0",
"sinon": "^9.2.3",
"supertest": "^6.1.1"
}
}