-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "@pagopa/change-data-capturer-ms",
"version": "0.0.1",
"repository": "https://github.com/pagopa/change-data-capturer-ms.git",
"author": "IO Platform team",
"license": "MIT",
"scripts": {
"lint": "eslint \"src/**\"",
"build": "tsc",
"watch": "tsc -w",
"test": "jest --coverage --passWithNoTests ./src",
"test:coverage": "jest --coverage",
"code-review": "yarn lint && yarn test"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
},
"dependencies": {
"@azure/identity": "^4.0.1",
"@azure/cosmos": "^4.0.0",
"@azure/event-hubs": "^5.11.3",
"@pagopa/fp-ts-kafkajs": "^1.0.1",
"@pagopa/winston-ts": "^2.2.0",
"@pagopa/ts-commons": "^12.4.1",
"@pagopa/data-indexer-commons": "^0.0.6",
"body-parser": "^1.20.2",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.21",
"io-ts-types": "^0.5.19",
"mongodb": "^6.3.0"
},
"devDependencies": {
"@pagopa/eslint-config": "^3.0.0",
"@types/jest": "^29.5.11",
"@types/express": "4.17.20",
"@types/body-parser": "^1.19.4",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}