-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 748 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 748 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
{
"name": "weather-api-wrapper-service",
"version": "1.0.0",
"description": "Weather API wrapper service that fetches and returns weather data from Visual Crossing API with Redis caching",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "jest --coverage"
},
"keywords": [
"weather",
"api",
"wrapper",
"redis",
"cache"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"ioredis": "^5.3.2"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^7.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}