-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
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
{
"name": "telgea-mvno-integration",
"version": "1.0.0",
"description": "Integration service for MVNO providers with Telgea's API normalizer",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix"
},
"dependencies": {
"axios": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.1.0",
"inversify": "^6.0.2",
"xml2js": "^0.6.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"^@application/(.*)$": "<rootDir>/src/application/$1",
"^@domain/(.*)$": "<rootDir>/src/domain/$1",
"^@infrastructure/(.*)$": "<rootDir>/src/infrastructure/$1",
"^@interface/(.*)$": "<rootDir>/src/interface/$1",
"^@shared/(.*)$": "<rootDir>/src/shared/$1",
"^@config/(.*)$": "<rootDir>/src/config/$1"
}
}
}