-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 915 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 915 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
37
{
"name": "api-foodexplorer",
"version": "1.0.0",
"description": "<h1 align=\"center\"> FoodExplorer API</h1>",
"main": "./src/server.js",
"scripts": {
"start": "node ./src/server.js",
"test": "jest --watch --verbose",
"dev": "nodemon ./src/server.js",
"migrate": "knex migrate:latest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-sse": "^0.5.3",
"jsonwebtoken": "^9.0.1",
"knex": "^2.5.1",
"mercadopago": "^2.0.3",
"multer": "^1.4.5-lts.1",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"yup": "^1.3.2"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"jest": "^29.6.3",
"kill-port": "^2.0.1",
"nodemon": "^3.0.1"
}
}