-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.83 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.83 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
{
"name": "scriptassist-nestjs-exercise",
"version": "0.1.0",
"description": "TaskFlow API - NestJS Backend Coding Exercise",
"author": "ScriptAssist Team",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "bun test",
"test:watch": "bun test --watch",
"test:cov": "bun test --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register bun test --runInBand",
"test:e2e": "bun test test/app.e2e-spec.ts",
"typeorm": "typeorm-ts-node-commonjs -d src/database/data-source.ts",
"migration:generate": "npm run typeorm -- migration:generate src/database/migrations/Migration",
"migration:run": "npm run typeorm -- migration:run",
"migration:revert": "npm run typeorm -- migration:revert",
"migration:show": "npm run typeorm -- migration:show",
"migration:create": "typeorm migration:create src/database/migrations/Migration",
"migration:custom": "ts-node src/database/run-migrations.ts",
"seed": "ts-node src/database/seeding/seeds.ts"
},
"dependencies": {
"@nestjs/bullmq": "10.2.3",
"@nestjs/common": "10.4.15",
"@nestjs/config": "3.3.0",
"@nestjs/core": "10.4.15",
"@nestjs/jwt": "10.2.0",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.4.15",
"@nestjs/schedule": "4.1.2",
"@nestjs/swagger": "7.4.2",
"@nestjs/throttler": "5.2.0",
"@nestjs/typeorm": "10.0.2",
"bcrypt": "6.0.0",
"bullmq": "4.18.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"dotenv": "16.4.7",
"ioredis": "5.6.1",
"passport": "0.7.0",
"passport-jwt": "4.0.1",
"pg": "8.14.1",
"reflect-metadata": "0.1.14",
"rxjs": "7.8.2",
"typeorm": "0.3.21",
"uuid": "9.0.1"
},
"devDependencies": {
"@nestjs/cli": "10.4.9",
"@nestjs/schematics": "10.2.3",
"@nestjs/testing": "11.0.11",
"@types/bcrypt": "5.0.2",
"@types/bun": "1.2.17",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/node": "20.17.24",
"@types/passport-jwt": "4.0.1",
"@types/supertest": "2.0.16",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"bun-types": "1.2.17",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.3",
"jest": "29.7.0",
"prettier": "3.5.3",
"source-map-support": "0.5.21",
"supertest": "7.0.0",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.8.2"
}
}