-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.44 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "recrutamento-conversor-nodejs-thais_kotovicz_hotmail.com",
"version": "1.0.0",
"description": "Voc� dever� implementar uma API Rest que seja capaz de realizar a convers�o entre duas moedas utilizando taxas de convers�es atualizadas de um servi�o externo.",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.test.ts --exit",
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"compose:up": "docker-compose up --build --detach",
"compose:down": "docker-compose down --remove-orphans"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/recrutamento_jya_nodejs/recrutamento-conversor-nodejs-thais_kotovicz_hotmail.com.git"
},
"keywords": [],
"author": "Thais Kotovicz <thais_kotovicz@hotmail.com>",
"license": "ISC",
"bugs": {
"url": "https://bitbucket.org/recrutamento_jya_nodejs/recrutamento-conversor-nodejs-thais_kotovicz_hotmail.com/issues"
},
"homepage": "https://bitbucket.org/recrutamento_jya_nodejs/recrutamento-conversor-nodejs-thais_kotovicz_hotmail.com#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"md5": "^2.3.0",
"sequelize": "^6.29.3",
"sqlite3": "^5.1.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/md5": "^2.3.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.0",
"@types/sequelize": "^4.28.14",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"@types/sqlite3": "^3.1.8",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.36.0",
"eslint-config-trybe-backend": "^2.1.0",
"http-status-codes": "^2.2.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"sequelize-cli": "^6.6.0",
"sinon": "^15.0.2",
"sinon-chai": "^3.7.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}