forked from stellarspend/stellarspend-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.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
{
"name": "stellarspend-api",
"version": "1.0.0",
"description": "Backend API for StellarSpend",
"main": "dist/main.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"start:dev": "npm run dev",
"dev": "ts-node -r tsconfig-paths/register src/main.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"ci": "npm run lint && npm test && npm run build",
"typeorm": "typeorm-ts-node-commonjs",
"migration:run": "npm run typeorm migration:run -- -d ormconfig.ts",
"migration:revert": "npm run typeorm migration:revert -- -d ormconfig.ts",
"migration:generate": "npm run typeorm migration:generate -- -d ormconfig.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SudiptaPaul-31/stellarspend-api.git"
},
"license": "ISC",
"dependencies": {
"@nestjs/bullmq": "^11.0.4",
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "^11.1.14",
"@nestjs/core": "^11.1.14",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^11.1.14",
"@nestjs/platform-socket.io": "^11.1.14",
"@nestjs/schedule": "^6.1.1",
"@nestjs/swagger": "^11.0.0",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^10.0.2",
"@nestjs/websockets": "^11.1.14",
"@stellar/stellar-sdk": "^11.2.0",
"bullmq": "^5.70.1",
"cache-manager": "^7.2.8",
"cache-manager-redis-store": "^3.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.11.3",
"redis": "^5.11.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"socket.io": "^4.8.3",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"@nestjs/testing": "^10.4.22",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.x",
"@types/passport-jwt": "^4.0.0",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^8.57.1",
"jest": "^30.2.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.x",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.x"
}
}