-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.1 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "api.devalopers",
"description": "Devalopers is a business-oriented web application for all developer and technology workers used to find jobs and projects. This repository represents the Backend part (API).",
"keywords": [
"developers",
"jobs",
"remote work",
"jobs platform",
"expressjs"
],
"homepage": "https://www.devalopers.com/",
"author": {
"name": "Salah Awad",
"email": "salah.awad@outlook.com",
"url": "https://www.linkedin.com/in/salahelawad/"
},
"repository": {
"type": "git",
"url": "https://github.com/DevCBeirut/api.devalopers"
},
"engines": {
"node": "14"
},
"license": "BSD-3-Clause-Clear",
"scripts": {
"start": "pm2 start ecosystem.config.json --no-daemon",
"dev": "cross-env NODE_ENV=development nodemon ./server.js",
"prod": "cross-env NODE_ENV=production nodemon ./server.js",
"cmd": "DEBUG=* nodemon ./inquirer.js",
"debug": "DEBUG=* nodemon ./server.js",
"update": "ncu -u && npm i",
"test": "jest -i --colors --verbose --detectOpenHandles",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"commander": "^4.1.1",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"country-state-city": "^2.1.0",
"cross-env": "^7.0.3",
"cryptr": "^6.0.1",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-back": "0.0.2",
"express-flash": "0.0.2",
"express-session": "^1.17.2",
"express-validator": "^6.4.0",
"form-data": "^3.0.0",
"helmet": "^4.1.0",
"http-status": "^1.4.0",
"i18n": "^0.8.5",
"inquirer": "^7.0.4",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"lru-cache": "^5.1.1",
"methods": "^1.1.2",
"moment": "^2.24.0",
"mongoosastic": "^4.6.0",
"mongoose": "^6.0.9",
"mongoose-lean-virtuals": "^0.8.1",
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"nodemailer": "^6.6.1",
"npm": "^7.24.2",
"osenv": "^0.1.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pm2": "^5.1.0",
"util": "^0.12.1",
"uuid": "^3.4.0",
"validator": "^13.6.0",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "1.7.0",
"eslint-plugin-security": "^1.4.0",
"faker": "^5.1.0",
"husky": "^5.1.2",
"jest": "^26.0.1",
"lint-staged": "^10.0.7",
"node-mocks-http": "^1.8.0",
"nodemon": "^2.0.0",
"prettier": "^2.0.5",
"supertest": "^6.0.1"
}
}