-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.34 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
80
81
82
{
"version": "1.0.176",
"description": "",
"main": "./src/index.ts",
"private": "true",
"engines": {
"node": "18.*"
},
"scripts": {
"test": "jest",
"build": "holidays2json --pick SE --min && tsc",
"test:watch": "TZ=UTC jest --watch",
"start": "ts-node ./src/index.ts",
"dev": "nodemon -e ts,js --exec npm run start",
"script:handle-expired-offers": "node scripts/handle-expired-offers.js",
"script:start-offer-batches": "node scripts/start-offer-batches.js",
"lint": "eslint -c .eslintrc src/",
"ts:watch": "tsc --watch --noEmit",
"test:ci": "TZ=UTC jest --silent",
"ts:ci": "tsc --noEmit"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/koa": "2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "12.0.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-pino-logger": "3.0.4",
"@types/node": "^20.11.5",
"@types/pino-multi-stream": "^5.1.6",
"@types/supertest": "2.0.12",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui": "^3.52.4",
"@typescript-eslint/eslint-plugin": "5.59.2",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"fishery": "^2.2.2",
"jest": "29.5.0",
"nock": "^13.5.4",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"supertest": "6.3.3",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"@iteam/config": "^12.1.2",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"@types/lodash": "^4.17.13",
"axios": "^1.7.7",
"axios-logger": "^2.8.0",
"date-holidays": "^3.23.12",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.0",
"koa-body": "^6.0.1",
"koa-bodyparser": "^4.4.1",
"koa-jwt": "^4.0.4",
"koa-pino-logger": "^4.0.0",
"koa2-swagger-ui": "^5.10.0",
"lodash": "^4.17.21",
"odoo-await": "^3.4.1",
"onecore-types": "^2.6.1",
"onecore-utilities": "^1.1.0",
"pino": "^9.1.0",
"pino-elasticsearch": "^8.0.0",
"pino-multi-stream": "^6.0.0",
"pino-pretty": "^11.0.0",
"striptags": "^3.2.0",
"swagger-jsdoc": "^6.2.8",
"zod": "^3.23.8"
}
}