forked from adityagarwal15/JobSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.43 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.43 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
{
"name": "jobsync-contact-server",
"version": "1.0.0",
"description": "Node.js server for JobSync contact form with Nodemailer",
"main": "server.js",
"scripts": {
"start": "nodemon ./server.js",
"dev": "nodemon server.js",
"install-deps": "npm install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"nodejs",
"express",
"nodemailer",
"contact-form",
"jobsync"
],
"author": "JobSync Team",
"license": "MIT",
"dependencies": {
"bcrypt": "^6.0.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf-csrf": "^4.0.3",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.18.2",
"express-rate-limit": "^8.0.1",
"express-session": "^1.18.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.18.0",
"mongoose": "^8.16.5",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.7",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"rate-limit-mongo": "^2.3.2"
},
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.32.0",
"@eslint/json": "^0.13.1",
"@eslint/markdown": "^7.1.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
},
"engines": {
"node": ">=14.0.0"
}
}