-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 895 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 895 Bytes
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
{
"name": "skillspark-backend",
"version": "1.0.0",
"description": "Learning roadmap and playlist generation API",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "echo \"Add ESLint configuration\"",
"clean": "rm -rf logs/*.log",
"setup": "cp .env.example .env && echo \"Please edit .env with your API keys\""
},
"dependencies": {
"@google/genai": "^0.3.0",
"@neondatabase/serverless": "^1.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"express-validator": "^7.0.1",
"googleapis": "^126.0.1",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}