-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "automation-report-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"start": "node dist/index",
"test": "mocha -r ts-node/register src/validations/trv11/2.0.1/*.ts",
"build": "tsc && copyfiles -u 1 \"src/**/*.yaml\" dist/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cucumber/cucumber": "^11.1.1",
"axios": "^1.7.8",
"body-parser": "^1.20.3",
"dotenv": "^16.4.6",
"express": "^4.21.1",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"ondc-automation-cache-lib": "^1.0.3",
"prom-client": "^15.1.3",
"winston": "^3.17.0",
"winston-loki": "^6.1.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/chai": "^5.0.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/winston": "^2.4.4",
"chai": "^5.1.2",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}