-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 845 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
{
"name": "meli-backend-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index",
"test:cov": "jest --watchAll --verbose --coverage --runInBand",
"test": "jest --watchAll --verbose --runInBand",
"format": "prettier --trailing-comma none --tab-width 2 --use-tabs --single-quote true --jsx-bracket-same-line --write --semi true '**/*.js'",
"debug": "node --nolazy --inspect-brk=9229 index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"config": "^1.29.4",
"cors": "^2.8.5",
"express": "^4.16.2",
"express-async-errors": "^2.1.0",
"express-favicon": "^2.0.1",
"winston": "^2.4.0"
},
"devDependencies": {
"jest": "^22.2.2",
"prettier": "^1.18.2",
"supertest": "^3.0.0"
}
}