-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "github-data-pipeline",
"version": "1.0.0",
"description": "",
"main": "dist/cli.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"bulk-discover": "tsx src/scripts/bulk-discover.ts",
"enrich-linkedin": "tsx src/scripts/enrich-linkedin-apify.ts",
"enrich-linkedin-sf": "tsx src/scripts/enrich-linkedin-sf.ts",
"db:push": "drizzle-kit push",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"test:pipeline": "tsx scripts/test-pipeline.ts",
"sql": "tsx src/scripts/run-sql.ts",
"sql:populate-leaderboard": "tsx src/scripts/run-sql.ts populate-leaderboard",
"sql:populate-analyses": "tsx src/scripts/run-sql.ts populate-analyses"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/ioredis": "^5.0.0",
"@types/node": "^25.5.0",
"@types/pg": "^8.11.6",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^20.0.2",
"@upstash/redis": "^1.37.0",
"axios": "^1.14.0",
"bullmq": "^5.71.1",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.2",
"ioredis": "^5.10.1",
"pg": "^8.20.0",
"zod": "^4.3.6"
}
}