-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "job-portal-api",
"version": "1.0.0",
"description": "This repository contains the source code for a job portal API built using Node.js Express, and TypeScript.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "dotenvx run --env-file=.env.local -- bun --hot src/index.ts",
"start": ".bun/bun src/index.ts",
"lint": "eslint . --ext .ts",
"push": "git add -A && git commit -m \"initial commit\" && git push origin master"
},
"keywords": [
"job-portal-api",
"job-portal",
"job-portal-typescript"
],
"author": "Nikhil Rajput",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/bun": "^1.1.3",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.2",
"@types/otp-generator": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@dotenvx/dotenvx": "^0.27.2",
"@getbrevo/brevo": "2.0.0-beta.4",
"@sendgrid/mail": "^8.1.3",
"body-parser": "^1.20.2",
"cloudinary": "^2.2.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.1",
"morgan": "^1.10.0",
"otp-generator": "^4.0.1",
"winston": "^3.13.0"
}
}