-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 KB
/
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
39
40
41
42
43
44
45
46
47
48
{
"name": "apigpt",
"version": "1.0.0",
"description": "This project aims to integrate GPT with Express.js, allowing GPT to manage all API responses and connect directly to a MongoDB database. The goal is to explore the capabilities of GPT tools in a practical application.",
"main": "index.js",
"module": "src/main.js",
"type": "module",
"scripts": {
"format": "prettier --write src/**/*.{js,mjs,json}",
"lint": "eslint src --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"start": "node src/main.js",
"dev": "nodemon src/main.js"
},
"keywords": [],
"author": "Thadeu Castelo Branco Ramos (thadeucbr@gmail.com)",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.0",
"mongodb": "^6.9.0",
"mongoose": "^8.7.0",
"openai": "^4.65.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@vitest/coverage-istanbul": "^2.1.1",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"vitest": "^2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/thadeucbr/apigpt"
},
"engines": {
"node": "20.17.0"
}
}