-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 744 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
34
35
36
{
"name": "green-sense",
"version": "2.0.0",
"description": "AI-Powered Plant Health Analysis Platform",
"main": "app.js",
"engines": {
"node": "22.x"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"plant",
"ai",
"health",
"analysis",
"agriculture"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"multer": "^1.4.5-lts.2",
"pdfkit": "^0.17.2",
"serverless-http": "^3.2.0",
"sharp": "^0.34.4"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}