-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "atlas-backend",
"version": "1.0.0",
"description": "Atlas backend with authentication, recommendations, and REST API",
"main": "dist/backend/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/backend/app.js",
"dev": "tsx src/backend/app.ts",
"dev:api": "tsx src/backend/modules/api/start.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist"
},
"dependencies": {
"@google/genai": "^1.21.0",
"@google/generative-ai": "^0.24.1",
"axios": "^1.12.2",
"bcryptjs": "^3.0.2",
"cheerio": "^1.1.2",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.2",
"tsx": "^4.20.6",
"validator": "^13.15.15"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^24.5.2",
"@types/validator": "^13.15.3",
"typescript": "^5.3.3"
}
}