forked from laugh-tales/starpass-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 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
84
85
86
87
88
89
90
91
92
{
"name": "starpass-backend",
"version": "0.1.0",
"description": "NestJS API and Soroban event indexer for StarPass",
"author": "laugh-tales",
"license": "MIT",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@apollo/server": "^4.13.0",
"@nestjs/apollo": "^12.2.2",
"@nestjs/cache-manager": "^3.1.3",
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.3.0",
"@nestjs/graphql": "^12.2.2",
"@nestjs/jwt": "^10.2.0",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/swagger": "^7.3.0",
"@nestjs/throttler": "^6.5.0",
"@nestjs/websockets": "^10.3.0",
"@prisma/client": "^5.8.0",
"@stellar/stellar-sdk": "^12.1.0",
"@willsoto/nestjs-prometheus": "^6.1.0",
"cache-manager": "^7.2.8",
"cache-manager-ioredis": "^2.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"graphql": "^16.14.2",
"nodemailer": "^9.0.1",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"socket.io": "^4.7.2",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@nestjs/cli": "^10.3.0",
"@nestjs/schematics": "^10.1.0",
"@nestjs/testing": "^10.3.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/nodemailer": "^8.0.1",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prisma": "^5.8.0",
"supertest": "^7.2.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^rxjs/operators$": "<rootDir>/../node_modules/rxjs/dist/cjs/operators/index.js",
"^rxjs/ajax$": "<rootDir>/../node_modules/rxjs/dist/cjs/ajax/index.js",
"^rxjs/fetch$": "<rootDir>/../node_modules/rxjs/dist/cjs/fetch/index.js",
"^rxjs/testing$": "<rootDir>/../node_modules/rxjs/dist/cjs/testing/index.js",
"^rxjs/webSocket$": "<rootDir>/../node_modules/rxjs/dist/cjs/webSocket/index.js",
"^rxjs$": "<rootDir>/../node_modules/rxjs/dist/cjs/index.js"
}
}
}