-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "cfc-schedules-tweet",
"version": "0.0.1",
"description": "Send tweet ahead of CFC's match",
"main": "./build/jobs/match-fetcher.js",
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.0.1",
"ioredis": "^5.1.0",
"moment": "^2.29.4",
"moment-parseformat": "^4.0.0",
"moment-timezone": "^0.5.46",
"oauth-1.0a": "^2.2.6",
"ts-node-dev": "^2.0.0"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"scripts": {
"build": "tsc",
"match-fetcher": "ts-node-dev --poll --transpile-only --respawn jobs/match-fetcher.ts --watch **/*.ts",
"match-reader": "ts-node-dev --poll --transpile-only --respawn jobs/match-reader.ts --watch **/*.ts",
"api-healthcheck": "ts-node-dev --poll --transpile-only --respawn jobs/serp-api-healthcheck.ts --watch **/*.ts",
"subscriber": "ts-node-dev --poll --transpile-only --respawn events/subscriber.ts --watch **/*.ts",
"subscriber-js": "node build/events/subscriber.js",
"lint": "eslint ./**/*.ts",
"format": "prettier --config .prettierrc --write './**/*.ts'",
"test": "jest --detectOpenHandles ./**/*.test.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run format",
"pre-push": "npm run lint && npm run test"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/reporters": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"body-parser": "^1.20.3",
"eslint": "^8.18.0",
"express": "^4.21.1",
"husky": "^9.1.6",
"jest": "^28.1.2",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^28.0.5",
"typescript": "^4.6.2"
}
}