-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "convert-celsius-fahrenheit",
"version": "1.0.0",
"description": "API for converting temperature - Celsius/Fahrenheit",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon",
"test": "jest --no-cache ./tests/*",
"deploy": "serverless deploy"
},
"author": "Adjeri Sabi",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"express-validator": "^6.14.0",
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"serverless-http": "^3.0.1",
"winston": "^3.7.2"
},
"jest": {
"modulePathIgnorePatterns": [
"package.json"
]
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
}
}