-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 KB
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
40
41
42
43
44
45
{
"name": "products-api-challenge",
"version": "1.0.0",
"description": "a RESTful API to manage products information built with Express and Postgres following SOLID principles and best practices.",
"main": "index.js",
"scripts": {
"dev": "dotenv -e .env.dev nodemon bin/www | npx pino-pretty -t SYS:standard",
"test": "jest .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Raul Quispe <relaxedchild@gmail.com>",
"license": "ISC",
"engines": {
"node": ">=14"
},
"dependencies": {
"@godaddy/terminus": "^4.9.0",
"celebrate": "^15.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-pino-logger": "^7.0.0",
"helmet": "^4.6.0",
"mongoose": "^6.4.6",
"pino": "^7.6.2"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"axios": "^0.27.2",
"docker-compose": "^0.23.17",
"dotenv-cli": "^4.1.1",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^26.4.1",
"eslint-plugin-prettier": "^4.0.0",
"is-port-reachable": "^3.1.0",
"jest": "^28.1.0",
"nodemon": "^2.0.20",
"pino-pretty": "^7.3.0",
"prettier": "2.6.2",
"supertest": "^6.1.6"
}
}