-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.49 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
{
"name": "logiquest_api",
"version": "1.0.0",
"description": "",
"main": "dist/src/main",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node .",
"test": "jest",
"test:cov": "jest --coverage"
"migration:generate": "npm run build && npx typeorm migration:generate -d dist/src/database/data-source.js",
"migration:run": "npm run build && npx typeorm migration:run -d dist/src/database/data-source.js",
"migration:revert": "npm run build && npx typeorm migration:revert -d dist/src/database/data-source.js",
"db:seed": "npm run build && node dist/src/database/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MindFlowInteractive/logiquest_api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/MindFlowInteractive/logiquest_api/issues"
},
"homepage": "https://github.com/MindFlowInteractive/logiquest_api#readme",
"dependencies": {
"@nestjs/cache-manager": "^3.1.3",
"@nestjs/common": "^11.1.27",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^11.1.27",
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.27",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.2",
"bcrypt": "^6.0.0",
"cache-manager": "^7.2.8",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"commander": "^15.0.0",
"helmet": "^8.2.0",
"joi": "^17.12.0",
"math-intrinsics": "^1.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"path-to-regexp": "^8.4.2",
"pg": "^8.21.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^1.0.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.23",
"@nestjs/schematics": "^11.1.0",
"@nestjs/testing": "^11.1.27",
"@types/bcrypt": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.3",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^7.2.0",
"jest": "^30.4.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"typescript": "^5.9.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}