forked from goldbergyoni/component-tests-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
77
78
{
"name": "exercise",
"version": "1.0.0",
"description": "",
"main": "sensors-api.js",
"scripts": {
"start": "./src/index.js",
"test": "jest --reporters=default --reporters=jest-junit",
"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/node-notifier": "^8.0.2",
"@types/sequelize": "^4.28.14",
"axios": "^1.2.2",
"axios-retry": "^3.3.1",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"nock": "^13.3.0",
"node-notifier": "^10.0.1",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.6.2",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"round-to": "^6.0.0",
"sequelize": "^6.28.0"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/eslint": "^8.4.10",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/jest-expect-message": "^1.0.4",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/nock": "^11.1.0",
"@types/prettier": "^2.7.2",
"@types/proxyquire": "^1.3.28",
"@types/round-to": "^4.0.0",
"@types/sinon": "^10.0.13",
"docker-compose": "^0.23.17",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-mocha": "^10.1.0",
"faker": "^6.6.6",
"is-port-reachable": "^3.1.0",
"jest": "^29.3.1",
"jest-allure": "^0.1.3",
"jest-expect-message": "^1.1.3",
"jest-extended": "^3.2.3",
"jest-junit": "^15.0.0",
"jest-openapi": "^0.14.2",
"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": "^2.2.1",
"js-yaml": "^4.1.0",
"npm": "^9.2.0",
"prettier": "^2.8.2",
"proxyquire": "^2.1.3",
"sequelize-cli": "^6.5.2",
"sinon": "^15.0.1",
"supertest": "^6.3.3"
}
}