-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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": "financial-services",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules --respawn src/shared/infra/http/server.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli",
"test": "jest --runInBand --config --forceExit"
},
"dependencies": {
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"cpf-cnpj-validator": "^1.0.3",
"dayjs": "^1.11.5",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.2.4",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.8",
"@types/jsonwebtoken": "^8.5.9",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "28.1.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}