-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "techlens-backend",
"version": "1.0.0",
"description": "TechLens backend API (Node.js + Express + TypeScript)",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "echo \"No tests yet\""
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "20.19.0"
},
"dependencies": {
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-rate-limit": "^8.3.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"xml2js": "^0.6.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.25",
"@types/pg": "^8.15.6",
"@types/xml2js": "^0.4.14",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}