-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 913 Bytes
/
package.json
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
{
"name": "instalike-back",
"version": "1.0.0",
"description": "This project is based in an Instagram page. Made this project as a study from the back-end imersion, using JavaScript, Node.js and Google Gemini, provided by Alura.",
"main": "index.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": "",
"keywords": [],
"author": "",
"contributors": [],
"scripts": {
"dev": "node --watch --env-file=.env server.js",
"test": "",
"start": "node server.js"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"mongodb": "^6.11.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/node": "^22.9.3"
}
}