-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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": "tours",
"version": "1.0.0",
"description": "an api for a travel agency startup",
"main": "src/server.js",
"scripts": {
"build": "babel src -d build",
"start:dev": "nodemon --exec babel-node src/server.js",
"start:prod": "yarn run build && node build/server.js",
"eslint": "eslint --color --ext .html,.js,.json,.jsx,.md,.ts,.tsx *.* src --ignore-pattern node_modules/",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write \"./**/*.{js,jsx,json}\""
},
"repository": "git+https://github.com/Braineanear/ToursAPI.git",
"bugs": {
"url": "https://github.com/Braineanear/ToursAPI/issues"
},
"homepage": "https://github.com/Braineanear/ToursAPI#readme",
"author": "Mahmoud Yasser",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@joi/date": "^2.1.0",
"argon2": "^0.28.2",
"aws-sdk": "^2.1035.0",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.5.1",
"googleapis": "^91.0.0",
"helmet": "^4.4.1",
"hpp": "^0.2.3",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.0.13",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.7.1",
"sharp": "^0.29.3",
"slugify": "^1.6.3",
"validator": "^13.7.0",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-syntax-flow": "^7.16.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-babel": "^0.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1"
},
"engines": {
"node": ">=14.0.0"
}
}