-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.36 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "gh-pinned-repos-api",
"version": "0.0.2",
"description": "an api service for retrieving pinned repos on GitHub profile.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"format": "prettier --write \"./**/*.{js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ysn4irix/gh-pinned-repos-api.git"
},
"keywords": [
"api",
"express",
"nodejs",
"pinned",
"github",
"repos",
"gh-pinned-repos-api",
"gh-pinned-repos",
"api"
],
"author": {
"name": "Ysn4Irix",
"email": "ysn4irix@gmail.com",
"url": "https://ysnirix.xyz"
},
"license": "MIT",
"bugs": {
"url": "git+https://github.com/ysn4irix/gh-pinned-repos-api/issues"
},
"homepage": "https://github.com/ysn4irix/gh-pinned-repos-api#readme",
"dependencies": {
"axios": "^1.6.1",
"cheerio": "1.0.0-rc.12",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-file-routing": "^3.0.3",
"express-rate-limit": "^6.7.1",
"express-slow-down": "^1.6.0",
"helmet": "^7.0.0",
"http-status-codes": "^2.2.0",
"lru-cache": "^10.0.1",
"response-time": "^2.3.2",
"serve-favicon": "^2.5.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.4.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.0"
},
"type": "module"
}