forked from BonyanOSS/Bonyan-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.77 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
{
"name": "bonyan-api",
"version": "2.0.0",
"description": "API for broadcasting the Quran and Islamic supplications, with automatic fallback between multiple sources and a unified data interface (Quran, Tafsir, Azkar, Hadith, Prayer Times, Hijri Date, Qibla)",
"main": "dist/server.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"lint": "eslint src tests --fix",
"lint:check": "eslint src tests",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"quran",
"azkar",
"tafsir",
"hadith",
"prayer-times",
"hijri",
"qibla",
"islamic-api",
"radio",
"api",
"typescript",
"fastify"
],
"author": "BonyanOSS",
"license": "MIT",
"packageManager": "pnpm@10.33.4",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"dotenv": "^17.3.1",
"fastify": "^5.7.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": ">=10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-header": "^1.2.2",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}