-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
{
"name": "skillibly-api",
"version": "1.0.0",
"description": "Skillibly API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint:check": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prettier:fix": "prettier --write .",
"lint-prettier": "npm run lint:check && npm run prettier:check",
"prepare": "husky install"
},
"author": "SOLVRZ [www.solvrz.com]",
"license": "MIT",
"lint-staged": {
"**/*.js": "npm run lint-prettier"
},
"keywords": [
"SKILLIBLY",
"Career Portal",
"Career",
"Job Portal",
"Job",
"Hiring"
],
"dependencies": {
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.15",
"celebrate": "^13.0.4",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"helmet": "^4.3.1",
"jsonwebtoken": "^9.0.1",
"lint-staged": "^14.0.0",
"mongoose": "^5.11.11",
"node-fetch": "^3.3.2",
"nodemailer": "^6.4.17",
"nodemon": "^3.0.1",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"morgan": "^1.10.0",
"prettier": "^3.0.1"
}
}