-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.38 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
{
"name": "runova-be",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build:swc": "./node_modules/.bin/nest build --builder swc",
"start": "./node_modules/.bin/nest start",
"build": "./node_modules/.bin/nest build",
"start:prod": "node ./dist/main.js",
"migration:run": "node ./node_modules/typeorm/cli.js -d dist/config/typeorm/data-source.js migration:run",
"start:dev": "npx nest start --watch",
"start:debug": "npx nest start --debug --watch",
"migration:run:prod": "node ./node_modules/typeorm/cli.js -d dist/src/config/typeorm/data-source.js migration:run",
"lint": "./node_modules/.bin/eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"test:cov": "./node_modules/.bin/jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register ./node_modules/.bin/jest --runInBand",
"test:e2e": "./node_modules/.bin/jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.879.0",
"@aws-sdk/credential-providers": "^3.879.0",
"@aws-sdk/s3-request-presigner": "^3.879.0",
"@keyv/valkey": "^1.0.8",
"@nestjs/axios": "^4.0.1",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/swagger": "^11.2.0",
"@nestjs/typeorm": "^11.0.0",
"@sentry/nestjs": "^10.11.0",
"@sentry/profiling-node": "^10.11.0",
"argon2": "^0.44.0",
"axios": "^1.12.2",
"cache-manager": "^7.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"geojson": "^0.5.0",
"google-auth-library": "^10.2.1",
"iovalkey": "^0.3.3",
"keyv": "^5.5.0",
"object-hash": "^3.0.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.3",
"pg-protocol": "^1.10.3",
"piscina": "^5.1.3",
"proj4": "^2.19.10",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"skia-canvas": "^3.0.6",
"typeorm": "^0.3.25",
"typeorm-transactional": "^0.5.0"
},
"devDependencies": {
"@faker-js/faker": "^10.0.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.7",
"@types/express": "^5.0.0",
"@types/geojson": "^7946.0.16",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/object-hash": "^3.0.6",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.2",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^16.0.0",
"jest": "^29.7.0",
"k6": "^0.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"roots": [
"./src",
"./test"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}