-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "resume-screening",
"version": "1.0.0",
"main": "./src/server.ts",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"eslint:fix": "eslint --fix"
},
"keywords": [
"Node",
"Typescript",
"ChatGPT",
"Resume",
"Data Analysis Tool",
"Resume Screening",
"Resume Evaluation"
],
"author": "Pratik Shah",
"license": "MIT",
"description": "",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mammoth": "^1.7.2",
"multer": "^1.4.5-lts.1",
"openai": "^4.47.2",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.13",
"@types/pdf-parse": "^1.1.4",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}