-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.28 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "letletme_data",
"version": "1.0.0",
"description": "Letletme_data fetches data from the Fantasy Premier League servers, cleans and transforms the data, and then stores it in PostgreSQL and Redis, providing APIs for querying data.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=production bun dist/index.js",
"dev": "bun --watch src/index.ts",
"worker": "bun src/worker.ts",
"worker:dev": "bun --watch src/worker.ts",
"worker:start": "NODE_ENV=production bun dist/worker.js",
"jobs:enqueue:events": "bun scripts/enqueue-events-job.ts",
"build": "bun build src/index.ts src/worker.ts --target bun --outdir ./dist",
"env:check": "bun validate-env.ts",
"test": "bun test",
"coverage": "bun test --coverage",
"lint": "bunx eslint . --ext .ts,.tsx --cache --config eslint.config.mjs",
"lint:fix": "bunx eslint . --ext .ts,.tsx --cache --fix --config eslint.config.mjs",
"format:fix": "bunx prettier --write .",
"db:generate": "bunx drizzle-kit generate",
"db:migrate": "bunx drizzle-kit migrate",
"db:check": "bunx drizzle-kit check",
"db:studio": "bunx drizzle-kit studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonglam/letletme_data.git"
},
"keywords": [
"FPL",
"Letletme",
"Elysia",
"Bun",
"PostgreSQL",
"Redis",
"TypeScript"
],
"author": "Tong Lam",
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.2.11",
"@types/node": "^20.11.5",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"bun-types": "^1.2.10",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/cron": "^1.3.0",
"bullmq": "^5.65.0",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.43.1",
"elysia": "^1.1.31",
"ioredis": "^5.6.1",
"pino": "^9.6.0",
"pino-roll": "^4.0.0",
"postgres": "^3.4.5",
"zod": "^3.24.3"
}
}