-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "byte-bite",
"version": "1.0.0",
"type": "module",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"dev": "nodemon src/index.js",
"start": "node ./src/index.js",
"build": "npm run build-docs",
"build-docs": "redocly bundle docs/openapi.yaml --ext json -o docs/swagger.json",
"preview-docs": "redocly preview-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Woolfson-Julia/Byte-BiteBD.git"
},
"keywords": [],
"author": "Julia Woolfson",
"license": "ISC",
"bugs": {
"url": "https://github.com/Woolfson-Julia/Byte-BiteBD/issues"
},
"homepage": "https://github.com/Woolfson-Julia/Byte-BiteBD#readme",
"description": "",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@redocly/cli": "^1.34.3",
"eslint": "^9.26.0",
"globals": "^16.1.0",
"nodemon": "^3.1.10",
"pino-pretty": "^13.0.0"
},
"dependencies": {
"bcrypt": "^6.0.0",
"cloudinary": "^2.6.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"google-auth-library": "^10.1.0",
"handlebars": "^4.7.8",
"http-errors": "^2.0.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.14.2",
"multer": "^2.0.1",
"nodemailer": "^7.0.3",
"pino-http": "^10.4.0",
"swagger-ui-express": "^5.0.1"
}
}