This repository was archived by the owner on Apr 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.96 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.96 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sump",
"version": "0.1.0",
"description": "sump - simple user management platform",
"main": "index.js",
"scripts": {
"dev:start": "ts-node ./src/main.ts",
"dev:watch": "nodemon",
"dev:watch:nest": "nodemon --exec ts-node ./src/main.ts",
"dev:container:watch": "docker compose up --build --watch",
"dev:container:start": "docker compose up --build",
"dev:container:down": "docker compose down",
"test": "jest --config jest.unit.config.ts",
"test:watch": "jest --config jest.unit.config.ts --watchAll",
"test:unit": "jest --config jest.unit.config.ts",
"test:integration": "docker compose --profile test run --rm test-runner",
"test:integration:watch": "docker compose --profile test-watch up test-watcher",
"test:integration:local": "jest --config jest.integration.config.ts",
"docker:rebuild": "docker compose build --no-cache base-image",
"lint": "eslint",
"lint:fix": "eslint --fix",
"build": "rimraf ./build && tsc",
"db:migration:up": "ts-node --project ./tsconfig.json ./src/infra/database/postgres/tools/run-migration-up.ts",
"ci:local": "npm run lint && npm run build && npm run test:unit",
"ci:local:full": "npm run lint && npm run build && npm run test:unit && npm run test:integration"
},
"author": "Thassio Victor <tvmcarvalho@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.34.0",
"@faker-js/faker": "^9.9.0",
"@nestjs/testing": "^10.4.20",
"@tsconfig/strictest": "^2.0.5",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.3",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^9.34.0",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.1.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"rimraf": "^6.0.1",
"supertest": "^7.1.4",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"dependencies": {
"@nestjs/common": "^10.4.20",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.20",
"@nestjs/platform-express": "^10.4.20",
"@nestjs/swagger": "^7.4.2",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"knex": "^3.1.0",
"knex-stringcase": "^1.5.5",
"nestjs-pino": "^4.5.0",
"nestjs-zod": "^3.0.0",
"pg": "^8.16.3",
"pino": "^9.9.0",
"pino-http": "^10.5.0",
"pino-pretty": "^13.1.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"yaml": "^2.8.1",
"zod": "^4.1.5"
}
}