-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.46 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
{
"name": "muslimhub",
"version": "1.0.0",
"description": "🕌 MuslimHub - Modern Digital Platform for Global Muslim Community. Islamic app with Prayer Times, Quran Reader, Zakat Calculator, Community Features & AI Assistant. Built with React 18 + TypeScript + MongoDB.",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm start",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"start": "cd backend && npm start",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "cd frontend && npm test",
"test:backend": "cd backend && npm test",
"install-deps": "npm install && cd frontend && npm install && cd ../backend && npm install"
},
"keywords": [
"islamic-app",
"muslim-platform",
"prayer-times",
"quran-reader",
"zakat-calculator",
"qibla-finder",
"islamic-community",
"muslim-community",
"islamic-technology",
"halal-software",
"digital-islam",
"react",
"typescript",
"mongodb",
"pwa",
"open-source"
],
"author": "MuslimHub Team",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"concurrently": "^9.2.0",
"create-react-app": "^5.1.0",
"typescript": "^5.8.3"
}
}