-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "github-streak-api",
"version": "1.0.0",
"private": true,
"description": "👨💻 GitHub Streak API",
"repository": "https://github.com/franznkemaka/github-streak-api",
"author": "Franz Nkemaka <franz@rigle.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/franznkemaka/github-streak-api/issues"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon dist/index.js",
"test": "jest",
"watch": "tsc -w",
"build": "tsc",
"lint": "eslint ."
},
"keywords": [
"github",
"api",
"streaks"
],
"dependencies": {
"axios": "^0.24.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1",
"flat-cache": "^3.0.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
}
}