-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.86 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
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
108
109
{
"name": "job-board-api",
"version": "1.0.3",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc & tsc-alias",
"start": "node dist/index.js",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/index.ts",
"vercel-build": "npm run build",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"tsc": "tsc -p ./tsconfig.json",
"tsc:w": "tsc -w -p ./tsconfig.json",
"tsc:a": "tsc -p ./tsconfig.json --noEmit",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"perversion": "npm run lint",
"version": "npm run format && git add -A src"
},
"dependencies": {
"amqplib": "^0.10.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"email-templates": "^12.0.1",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"ioredis": "^5.4.1",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"path-to-regexp": "^0.1.10",
"supertest": "^7.0.0",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.2.5",
"tsup": "^8.3.0",
"yamljs": "^0.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/email-templates": "^10.0.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^22.4.0",
"@types/nodemailer": "^6.4.16",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"keywords": [
"typescript",
"express",
"nodejs",
"api",
"job-board",
"mongoose",
"authentication",
"jwt",
"backend",
"server",
"application",
"dev",
"web-development",
"rest-api",
"crud",
"mongodb",
"typescript-node",
"api-development",
"middleware",
"scalable",
"server-side"
],
"description": "A job board API for managing job postings and applications using TypeScript, Express, and MongoDB.",
"homepage": "https://github.com/zobkazi/job-board-api",
"bugs": "https://github.com/zobkazi/job-board-api/issues",
"author": {
"name": "Zobaidul Kazi",
"url": "https://zobkazi.github.io"
},
"maintainers": [
{
"name": "Zobaidul Kazi",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/zobkazi/job-board-api.git"
}
}