forked from alfaarghya/alfa-leetcode-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "alfa-leetcode-api",
"version": "2.0.1",
"description": "It's a leetcode custom api. This API provides endpoints to retrieve details about a user's profile, badges, solved questions, contest details, contest history, submissions, calendar and and also daily questions, selected problem, list of problems.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"start": "node dist/index.js",
"prestart": "npm run build",
"test": "jest"
},
"keywords": [],
"author": "alfaarghya",
"license": "ISC",
"dependencies": {
"apicache": "^1.6.3",
"axios": "^1.7.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5"
},
"devDependencies": {
"@types/apicache": "^1.6.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"msw": "^2.2.3",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}