-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 889 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 889 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
33
34
35
36
37
{
"name": "redacted-backend",
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest"
},
"keywords": [
"express",
"node",
"api"
],
"author": "",
"license": "ISC",
"description": "Express.js backend with HTTPS support",
"dependencies": {
"@google/genai": "^0.10.0",
"axios": "^1.9.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"mongodb": "^6.16.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"jest": "^29.3.1",
"nodemon": "^2.0.20"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@9.0.1+sha512.f904b133d699415b0d997ee3f05a269affbdb02cf6b227fa03d85483a8f3dfced0b9160a7d477dc051ab67af8be44705b9fdf15f2ae33bc83b76886529fb4b1d"
}