-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 906 Bytes
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
{
"name": "grandwarden",
"version": "1.0.0",
"description": "GrandWarden - AI-Powered Misinformation Detection Platform",
"private": true,
"scripts": {
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"install:all": "cd backend && npm install && cd ../frontend && npm install",
"build": "cd frontend && npm run build",
"start": "cd backend && node index.js",
"dev": "npx concurrently \"npm run dev:backend\" \"npm run dev:frontend\""
},
"keywords": [
"misinformation",
"ai",
"gemini",
"detection"
],
"author": "jeevapriyan10",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"mongodb": "^6.3.0",
"concurrently": "^9.2.1"
},
"devDependencies": {}
}