-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 959 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
38
{
"name": "challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/api.js",
"test": "mocha 'tests/**/*.js' --recursive --timeout 60000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuryalencar/challenge.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yuryalencar/challenge/issues"
},
"homepage": "https://github.com/yuryalencar/challenge#readme",
"devDependencies": {
"eslint": "^7.3.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.0.1",
"prettier": "^2.0.5"
},
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^19.1.1",
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"nock": "^12.0.3"
}
}