-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "teste-cobuccio",
"version": "0.0.1",
"description": "teste-cobuccio",
"author": "Bruno <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && nest build",
"dev": "npx kill-port 3007 && npm run clean && nest start --watch",
"start:debug": "nest start --debug --watch",
"start": "node dist/main",
"db:migrate": "docker exec -i cobuccio-postgres psql -U MasterPostgres -d postgres -f /migrations/migrations.sql",
"db:seed": "docker exec -i cobuccio-postgres psql -U MasterPostgres -d postgres -f /seeds/seeds.sql",
"db:create-db-tests": "docker exec -i cobuccio-postgres psql -U MasterPostgres -d postgres -f /migrations/create-database-tests.sql",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"test": "NODE_OPTIONS='--no-warnings' jest --passWithNoTests --forceExit --detectOpenHandles --runInBand --no-cache",
"test:watch": "npm run test -- --watchAll",
"test:unit": "npm run test -- -c jest-unit.config.js",
"test:unit:watch": "npm run test -- --watch -c jest-unit.config.js",
"test:e2e": "npm run test -- -c jest.e2e.config.js",
"test:e2e:watch": "npm run test -- --watch -c jest.e2e.config.js",
"test:cov": "rm -rf coverage && npm run test -- --coverage && npm run test:cov:serve",
"test:cov:serve": "kill-port 3009 && echo '>> View tests coverage:\n\n-> http://127.0.0.1:3009' && http-server coverage/lcov-report/ -p 3009 -s -c1"
},
"dependencies": {
"@fastify/static": "^6.12.0",
"@nestjs/axios": "^3.0.1",
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.3.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "^2.0.4",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/platform-fastify": "^10.3.0",
"@nestjs/swagger": "^7.1.17",
"axios": "^1.6.5",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cli-color": "^2.0.3",
"colors": "^1.4.0",
"cross-fetch": "^4.0.0",
"date-fns": "^3.1.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"express": "^4.18.2",
"fastify-swagger": "^5.2.0",
"helmet": "^7.1.0",
"ioredis": "^5.5.0",
"jsonapi-serializer": "^3.6.9",
"nest-winston": "^1.9.4",
"nodemailer": "^6.9.16",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"sequelize": "^6.35.2",
"sequelize-typescript": "^2.1.6",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-elasticsearch": "^0.19.0"
},
"devDependencies": {
"@faker-js/faker": "^9.5.0",
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^11.0.10",
"@types/bcryptjs": "^2.4.6",
"@types/cli-color": "^2.0.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.6",
"@types/sequelize": "^4.28.19",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.0.0",
"git-commit-msg-linter": "^5.0.6",
"jest": "^29.7.0",
"kill-port": "^2.0.1",
"prettier": "^3.1.1",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"engines": {
"node": "20"
}
}