-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
79 lines (79 loc) · 2.37 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
79
{
"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.5",
"@types/sequelize": "^4.28.20",
"axios": "^1.7.8",
"axios-retry": "^4.5.0",
"body-parser": "^1.20.3",
"express": "^4.21.1",
"nock": "^13.5.6",
"node-notifier": "^10.0.1",
"nodemon": "^3.1.7",
"npm-check-updates": "^17.1.11",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"round-to": "^6.0.0",
"sequelize": "^6.37.5"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.5",
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.0",
"@types/is-ci": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/jest-expect-message": "^1.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/nock": "^11.1.0",
"@types/prettier": "^2.7.3",
"@types/proxyquire": "^1.3.31",
"@types/round-to": "^4.0.0",
"@types/sinon": "^17.0.3",
"docker-compose": "^1.1.0",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-mocha": "^10.5.0",
"faker": "^6.6.6",
"is-ci": "^3.0.1",
"is-port-reachable": "^3.0.0",
"jest": "^29.7.0",
"jest-allure": "^0.1.3",
"jest-expect-message": "^1.1.3",
"jest-extended": "^4.0.2",
"jest-junit": "^16.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": "^3.0.0",
"jest-watch-typeahead": "^2.2.2",
"js-yaml": "^4.1.0",
"npm": "^10.9.1",
"prettier": "^3.4.1",
"proxyquire": "^2.1.3",
"sequelize-cli": "^6.6.2",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
}
}