-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "rentx-prisma",
"version": "1.0.0",
"description": "",
"main": ".eslintrc.js",
"scripts": {
"test:unit": "jest",
"test:functional": "npm run pretest && jest --projects ./tests -i --silent=false && npm run posttest",
"pretest": "docker-compose up -d database_test",
"posttest": "docker-compose stop database_test",
"dev": "tsnd -r tsconfig-paths/register --respawn --ignore-watch node_modules --transpile-only src/shared/infra/http/server",
"prisma": "prisma",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"docker:up": "docker-compose up -d"
},
"prisma": {
"schema": "./src/shared/infra/prisma/schema.prisma"
},
"keywords": [],
"author": "Matheus Santos Araujo da Silva <souzamatheus8174@gmail.com>",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@types/bcrypt": "^5.0.0",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.18",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"git-commit-msg-linter": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^13.0.3",
"pg": "^8.8.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@prisma/client": "^4.3.1",
"bcrypt": "^5.0.1",
"dayjs": "^1.11.6",
"dotenv-safe": "^8.2.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"prisma": "^4.3.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.5.0",
"tsyringe": "^4.7.0"
}
}