-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "food-explorer-backend",
"version": "1.0.0",
"description": "Back-End da aplicação Food Explorer",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/server.js",
"migrate": "knex migrate:latest",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vitinho163/Food-Explorer-BackEnd.git"
},
"author": "João Victor",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vitinho163/Food-Explorer-BackEnd/issues"
},
"homepage": "https://github.com/Vitinho163/Food-Explorer-BackEnd#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mercadopago": "^2.0.10",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"stripe": "^15.9.0",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.3"
}
}