-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.2 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.2 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "nest-api-example",
"version": "0.0.0-development",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/leosuncin/nest-api-example.git"
},
"license": "GPL-3.0",
"author": "Jaime Leonardo Suncin Cruz <leosuncin@gmail.com>",
"scripts": {
"build": "nest build",
"db:create": "ts-node -r dotenv/config -r tsconfig-paths/register node_modules/typeorm-extension/dist/cli/index.js db:create -d src/config/data-source.cli --synchronize=no --initialDatabase=postgres",
"db:drop": "ts-node -r dotenv/config -r tsconfig-paths/register node_modules/typeorm-extension/dist/cli/index.js db:drop -d src/config/data-source.cli --initialDatabase=postgres",
"db:seed": "ts-node -r dotenv/config -r tsconfig-paths/register node_modules/typeorm-extension/dist/cli/index.js seed -d src/config/data-source.cli",
"format": "prettier --write \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint .",
"prepare": "husky",
"release": "semantic-release",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"start:repl": "nest start --entryFile repl",
"test": "jest --selectProjects 'Unit test'",
"test:cov": "jest --selectProjects 'Unit test' --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --selectProjects 'E2E test'",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit --noErrorTruncation --pretty false --incremental false -p tsconfig.build.json",
"typeorm": "NODE_OPTIONS='-r dotenv/config -r tsconfig-paths/register' typeorm-ts-node-commonjs -d src/config/data-source.cli"
},
"dependencies": {
"@epic-web/cachified": "5.6.2",
"@nestjs/common": "11.1.19",
"@nestjs/config": "4.0.4",
"@nestjs/core": "10.4.22",
"@nestjs/jwt": "11.0.2",
"@nestjs/mapped-types": "2.1.1",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.4.22",
"@nestjs/terminus": "10.3.0",
"@nestjs/typeorm": "11.0.1",
"bcryptjs": "3.0.3",
"class-transformer": "0.5.1",
"class-validator": "0.15.1",
"cookie-parser": "1.4.7",
"hibp": "14.1.3",
"lru-cache": "11.3.6",
"nestjs-typeorm-paginate": "4.1.0",
"normalize-email": "1.1.1",
"passport": "0.7.0",
"passport-jwt": "4.0.1",
"pg": "8.20.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"short-uuid": "5.2.0",
"slugify": "1.6.9",
"tiny-invariant": "1.3.3",
"typeorm": "0.3.28"
},
"devDependencies": {
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@faker-js/faker": "9.9.0",
"@nestjs/cli": "10.4.9",
"@nestjs/schematics": "10.2.3",
"@nestjs/testing": "10.4.22",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@tsconfig/node24": "^24.0.0",
"@types/bcryptjs": "3.0.0",
"@types/cookie-parser": "1.4.10",
"@types/express": "5.0.6",
"@types/jest": "30.0.0",
"@types/jest-dev-server": "5.0.3",
"@types/node": "24.12.2",
"@types/passport": "1.0.17",
"@types/passport-jwt": "4.0.1",
"@types/supertest": "7.2.0",
"@types/validator": "13.15.10",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"cspell": "10.0.0",
"dotenv": "17.4.2",
"eslint": "10.3.0",
"eslint-config-canonical": "47.4.2",
"eslint-plugin-security": "4.0.0",
"factory.io": "0.1.4",
"fast-check": "4.7.0",
"husky": "9.1.7",
"jest": "30.0.5",
"jest-create-mock-instance": "2.0.0",
"lint-staged": "17.0.2",
"nock": "14.0.15",
"node-mocks-http": "1.17.2",
"pactum": "3.9.1",
"pg-mem": "3.0.14",
"prettier": "3.8.3",
"prettier-plugin-toml": "2.0.6",
"semantic-release": "25.0.3",
"sort-package-json": "3.6.1",
"supertest": "7.2.2",
"ts-jest": "29.4.9",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typeorm-extension": "2.8.1",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=20"
}
}