-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.27 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "backend-conetando-huellas",
"version": "1.0.0",
"description": "backend for conectando huellas",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc && npm run copy-docs",
"copy-docs": "cp -r src/docs dist/docs",
"dev": "tsx watch ./src/index.ts",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix",
"prettier": "prettier --write --ignore-unknown .",
"prepare": "husky"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"@sendgrid/mail": "^8.1.3",
"@types/compression": "^1.7.5",
"@types/multer": "^1.4.12",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"bcrypt": "^5.1.1",
"cloudinary": "^2.5.1",
"compose-middleware": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"express": "^5.0.1",
"express-validator": "^7.2.0",
"handlebars": "^4.7.8",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.5",
"@types/nodemailer": "^6.4.16",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-react": "^7.37.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prisma": "^5.20.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.ts": [
"npm run prettier",
"npm run lint:fix"
]
},
"bugs": {
"url": "https://github.com/khriztianmoreno/backend-nft-marketplace/issues"
},
"homepage": "https://github.com/khriztianmoreno/backend-nft-marketplace#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/khriztianmoreno/backend-nft-marketplace.git"
},
"author": "Cristian Moreno",
"license": "MIT"
}