-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "juricc",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"main": "src/index.js",
"scripts": {
"format": "prettier --write \"src/**/*.js\"",
"start": "NODE_ENV=local node .",
"lint": "eslint \"{src,apps,libs,test}/**/*.js\" --fix",
"test": "jest && npm run test:integration",
"test:batch": "jest --testPathPattern=src/batch",
"test:api": "jest --testPathPattern=src/api & npm run test:integration",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:integration": "jest --config ./jest-integration.json --runInBand"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.400.0",
"axios": "^1.5.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cron": "^2.4.3",
"dbsder-api-types": "^1.1.9",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"he": "^1.2.0",
"iconv-lite": "^0.6.3",
"joi": "^17.10.0",
"luxon": "^3.2.1",
"mongodb": "^6.0.0",
"oracledb": "^5.5.0",
"pino": "^8.8.0",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0"
},
"devDependencies": {
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"jest-mock-extended": "^3.0.5",
"pino-pretty": "^10.2.0",
"prettier": "^3.0.3",
"supertest": "^6.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.js$",
"collectCoverageFrom": [
"**/*.js"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/.jest/setupEnvVars.js"
]
}
}