forked from mhashim6/Open-Hadith-Data
-
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.51 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.51 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": "hadith-data-converter",
"version": "1.0.0",
"description": "Convert Hadith CSV data to JSON format and create Fastify API",
"main": "scripts/csv-to-json-converter.js",
"scripts": {
"convert": "node scripts/csv-to-json-converter.js",
"convert:watch": "nodemon scripts/csv-to-json-converter.js",
"postinstall": "node scripts/setup-public-dir.js",
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"build": "echo 'No build required'",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"hadith",
"islamic",
"csv",
"json",
"api",
"fastify",
"arabic",
"text"
],
"author": "Hadith Data Project",
"license": "MIT",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^8.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/jwt": "^10.0.0",
"@fastify/oauth2": "^8.1.2",
"@fastify/rate-limit": "^9.0.1",
"@fastify/secure-session": "^8.2.0",
"@fastify/session": "^11.1.0",
"@fastify/static": "^6.12.0",
"bcryptjs": "^3.0.2",
"csv-parser": "^3.0.0",
"dotenv": "^17.2.1",
"fastify": "^4.24.3",
"fastify-plugin": "^4.5.1",
"jsonwebtoken": "^9.0.2",
"pino-pretty": "^13.1.1",
"serverless-http": "^3.2.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/hadith-data-converter.git"
}
}