-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "apnaketh",
"version": "1.0.0",
"description": "ApnaKeth - Smart AgriScout with AI-powered crop stress detection",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build"
},
"keywords": [
"agriculture",
"ai",
"crop-monitoring",
"ndvi",
"geospatial",
"satellite"
],
"author": "Team Hacksters",
"license": "MIT",
"dependencies": {
"@langchain/community": "^0.3.55",
"@langchain/core": "^0.3.75",
"@langchain/langgraph": "^0.4.9",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"helmet": "^7.0.0",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node": "^20.5.9",
"@types/uuid": "^9.0.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}