-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "github-stats",
"version": "2.0.0",
"description": "Generate dynamic GitHub stats cards for your README",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "node --watch --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/index.ts",
"start": "node dist/index.js",
"start:cluster": "node dist/server-cluster.js",
"start:production": "NODE_ENV=production node dist/server-cluster.js",
"test": "jest",
"cache:clear": "tsx scripts/clear-redis-cache.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio --host 127.0.0.1 --port 34222",
"studio": "pm2 start npx --name drizzle-studio -- drizzle-kit studio --host 127.0.0.1 --port 34222"
},
"keywords": [
"github",
"stats",
"readme",
"svg",
"card"
],
"author": "",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^20.0.2",
"@resvg/resvg-js": "^2.6.2",
"better-sqlite3": "^12.6.2",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"ffmpeg-static": "^5.3.0",
"helmet": "^8.1.0",
"node-fetch": "^3.3.2",
"redis": "^4.6.12",
"sharp": "^0.33.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/helmet": "^0.0.48",
"@types/node": "^20.10.5",
"drizzle-kit": "^0.31.9",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
},
"overrides": {
"esbuild": ">=0.25.0"
}
}