-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1007 Bytes
/
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
{
"name": "github-leaderboard-api",
"version": "1.0.0",
"description": "Github Leaderboard API - Most popular users, repositories, etc.",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js"
},
"dependencies": {
"@octokit/core": "3.5.1",
"axios": "0.24.0",
"cheerio": "1.0.0-rc.10",
"dotenv": "^10.0.0",
"fastify": "^3.25.1",
"fastify-caching": "^6.2.0",
"fastify-cors": "6.0.2"
},
"devDependencies": {
"nodemon": "^2.0.1"
},
"keywords": [
"github leaderboard",
"github leaderboard api",
"github api",
"leaderboard",
"api"
],
"author": {
"name": "Feri Irawan",
"url": "https://github.com/feri-irawan"
},
"homepage": "https://github.com/feri-irawan/github-leaderboard-api",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/feri-irawan/github-leaderboard-api.git"
},
"eslintConfig": {
"sourceType": "script"
}
}