-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 733 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 733 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
{
"name": "dynamic-profile-api",
"version": "1.0.0",
"description": "A dynamic profile endpoint with cat facts integration",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest",
"build": "npm install --omit=dev"
},
"dependencies": {
"axios": "^1.12.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"helmet": "^8.1.0"
},
"devDependencies": {
"jest": "^30.2.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": ["api", "profile", "cat-facts", "express"],
"author": "George Owoicho",
"license": "MIT"
}