-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "candidate-matching",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src --ext ts,js,json --exec ts-node src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prestart": "npm run build",
"serve": "npm run build && npm start",
"type-check": "tsc --noEmit",
"lint": "tsc --noEmit --strict && echo '✅ TypeScript strict mode check passed'",
"lint:check": "npm run type-check",
"validate": "npm run lint && npm run build",
"test": "echo 'No tests configured yet'"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@prisma/client": "^6.11.1",
"chromadb": "^1.8.1",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^17.1.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"openai": "^4.68.4",
"prisma": "^6.11.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.3",
"@types/node": "^24.0.12",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}