forked from StarShopCr/StarShop-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.56 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.56 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
111
112
113
114
115
116
117
{
"name": "starshop-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"dev": "nest start --watch",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test:crypto": "node test-crypto.js",
"docs:validate": "swagger-cli validate openapi.yaml",
"docs:build": "redoc-cli build openapi.yaml -o static-docs.html",
"typeorm": "typeorm",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"pre-commit": "npm run lint && npm run format && npm run test:ci",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix",
"jest --findRelatedTests"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "StarShop Backend API",
"dependencies": {
"@aws-sdk/client-s3": "^3.802.0",
"@nestjs/common": "^11.1.3",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.3",
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.0",
"@nestjs/schedule": "^6.0.0",
"@nestjs/swagger": "^11.2.0",
"@nestjs/typeorm": "^11.0.0",
"@supabase/supabase-js": "^2.46.1",
"@trustless-work/escrow": "^2.0.2",
"@types/bcryptjs": "^2.4.6",
"axios": "^1.7.9",
"bcryptjs": "^3.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cloudinary": "^1.41.3",
"dotenv": "^16.4.7",
"env-var": "^7.5.0",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.2",
"multer-s3": "^3.0.1",
"multer-storage-cloudinary": "^4.0.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.15.6",
"pusher": "^5.2.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"soroban-client": "^1.0.1",
"stellar-sdk": "^11.0.0",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.25",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.1.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/multer-s3": "^3.0.3",
"@types/node": "^22.10.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"i": "^0.3.7",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"lint-staged": "^15.2.0",
"npm": "^11.3.0",
"prettier": "^3.2.4",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.7",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"zod": "^3.22.4"
}
}