-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "project-recipesback",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-docs",
"build-docs": "redocly bundle docs/openapi.yaml --ext json -o docs/swagger.json",
"preview-docs": "redocly preview-docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vitavanika/project-RecipesBack.git"
},
"keywords": [],
"author": "Tetiana Viienko <vitavanika@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vitavanika/project-RecipesBack/issues"
},
"homepage": "https://github.com/Vitavanika/project-RecipesBack#readme",
"description": "",
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^16.3.0",
"nodemon": "^3.1.10",
"prettier": "^3.2.5"
},
"dependencies": {
"@redocly/cli": "^2.0.5",
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"handlebars": "^4.7.8",
"http-errors": "^2.0.0",
"joi": "^18.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.17.1",
"multer": "^2.0.2",
"pino-http": "^10.5.0",
"pino-pretty": "^13.1.1",
"swagger-ui-express": "^5.0.1"
}
}