-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.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
{
"name": "e-organico-api-service",
"version": "1.0.0",
"main": "src/main.ts",
"repository": "https://github.com/iago-f-s-e/e-organico-api-service.git",
"author": "iago-f-s-e <iago.fagundes@outlook.com>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/main.js",
"up:dev": "docker-compose -f docker-compose.dev.yml up",
"up:prod": "docker-compose -f docker-compose.prod.yml up -d",
"down:dev": "docker-compose -f docker-compose.dev.yml down",
"down:prod": "docker-compose -f docker-compose.prod.yml down",
"lint": " eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"typecheck": "yarn tsc --noEmit",
"typewatch": "yarn tsc -w --noEmit",
"prepare:husky": "husky install"
},
"dependencies": {
"@nestjs/common": "^8.4.5",
"@nestjs/core": "^8.4.5",
"@nestjs/jwt": "^9.0.0",
"@nestjs/microservices": "^8.4.5",
"@nestjs/platform-express": "^8.4.5",
"@nestjs/typeorm": "^8.0.4",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"helmet": "^5.1.0",
"ioredis": "^5.0.5",
"kafkajs": "^2.0.1",
"pg": "^8.7.3",
"redis": "^4.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"typeorm": "^0.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/cli": "^8.2.6",
"@nestjs/schematics": "^8.0.11",
"@nestjs/testing": "^8.4.5",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/ioredis": "^4.28.10",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/node-fetch": "^2.6.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"source-map-support": "^0.5.21",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
}
}