forked from hurbcom/challenge-bravo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
40
41
42
43
44
45
46
47
{
"name": "challenge-bravo",
"version": "1.0.0",
"description": "API de conversão monetária",
"main": "server.js",
"scripts": {
"lint": "eslint",
"stress-test": "artillery quick --count 1000 -n 10 'http://localhost:3000/api/v1/currency_quotes?from=USD&to=BRL&amount=123'",
"test": "PORT=3001 mocha --exit -- ./test/**/*.js",
"dev": "NODE_ENV=3000 nodemon server.js",
"start": "NODE_ENV=3000 node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cleysonlb/challenge-bravo.git"
},
"keywords": [
"Hurb",
"challenge-bravo",
"hotel-urbano"
],
"author": "Cleyson Leal Braga",
"license": "ISC",
"bugs": {
"url": "https://github.com/hurbcom/challenge-bravo/issues"
},
"homepage": "https://github.com/Cleysonlb/challenge-bravo.git#readme",
"dependencies": {
"artillery": "^1.6.0-25",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"node-mocks-http": "^1.7.3",
"should": "^13.2.3"
}
}