-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 KB
/
package.json
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
{
"name": "weather-service",
"version": "1.0.0",
"description": "HTTP Service that reports on Melbourne weather",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"lint": "eslint --fix *.js",
"test": "jest --detectOpenHandles --forceExit --verbose --runInBand --coverage"
},
"keywords": [],
"author": "Edwin Granados",
"license": "MIT",
"dependencies": {
"@types/node": "^20.11.10",
"axios": "^1.6.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"pino-http": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-sort": "^2.11.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-unused-imports": "^3.0.0",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"superagent": "^8.1.2",
"supertest": "^6.3.4"
}
}