-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "etha3a",
"version": "1.0.0",
"description": "API for broadcasting the Quran and supplications with automatic fallback between multiple sources and a unified data interface",
"main": "dist/server.js",
"type": "module",
"scripts": {
"dev": "tsx src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"lint": "eslint src tests --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"quran",
"azkar",
"radio",
"api",
"typescript",
"fastify"
],
"author": "BonyanOSS",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@fastify/cors": "^11.2.0",
"dotenv": "^17.3.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-header": "^1.2.2",
"fastify": "^5.7.4",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.56.1"
},
"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",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}