-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "github-api-backend",
"version": "3.0.0",
"description": "GitHub API backend with comprehensive stats endpoint, intelligent caching, and robust error handling",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"clean": "rimraf dist",
"test": "echo \"No tests specified\" && exit 0",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"github",
"api",
"proxy",
"backend",
"stats",
"typescript",
"express",
"netlify",
"serverless"
],
"author": "amitxd75",
"license": "MIT",
"dependencies": {
"@netlify/functions": "^5.2.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.1.0",
"serverless-http": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.6.2",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"rimraf": "^6.1.3",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/amitxd75/github-api-backend.git"
},
"bugs": {
"url": "https://github.com/amitxd75/github-api-backend/issues"
},
"homepage": "https://github.com/amitxd75/github-api-backend#readme"
}