-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "stravel-backend",
"version": "1.0.0",
"description": "Backend de la guía turística Stravel",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write 'src/**/*.{js,json}'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KFuee/urban-mobility-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KFuee/urban-mobility-backend/issues"
},
"homepage": "https://github.com/KFuee/urban-mobility-backend#readme",
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"prettier": "^2.6.1"
},
"dependencies": {
"axios": "^0.27.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^5.0.2",
"http-status": "^1.5.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.2",
"mongoose": "^6.2.9",
"morgan": "^1.10.0",
"nodemailer": "^6.7.3",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"validator": "^13.7.0",
"winston": "^3.6.0",
"xss-clean": "^0.1.1"
},
"lint-staged": {
"src/**/*.js": [
"npm run format",
"npm run lint:fix"
]
}
}