-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
180 lines (180 loc) · 5.7 KB
/
package.json
File metadata and controls
180 lines (180 loc) · 5.7 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "finarva-api",
"version": "1.0.0",
"description": "🚀 Finarva AI Backend: The Financial OS for Microentrepreneurs - A robust and scalable NestJS platform with AI-powered financial advisory, expense tracking, cash flow analysis, and merchant assistance.",
"author": {
"name": "Finarva Team",
"email": "contact@finarva.com",
"url": "https://github.com/techySPHINX"
},
"private": false,
"license": "MIT",
"homepage": "https://github.com/techySPHINX/Finarva#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/techySPHINX/Finarva.git"
},
"bugs": {
"url": "https://github.com/techySPHINX/Finarva/issues"
},
"keywords": [
"fintech",
"ai",
"financial-advisory",
"microentrepreneurs",
"nestjs",
"typescript",
"postgresql",
"prisma",
"openai",
"gemini",
"api",
"backend",
"cash-flow",
"expense-tracking",
"business-analytics",
"merchant-assistant"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"e2e-tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"e2e-tests/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"clean": "rimraf dist coverage .nyc_output",
"clean:src": "rimraf src/**/*.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"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",
"test:e2e:watch": "jest --config ./test/jest-e2e.json --watch",
"test:e2e:cov": "jest --config ./test/jest-e2e.json --coverage",
"test:all": "npm run test && npm run test:e2e",
"test:ci": "npm run test:cov && npm run test:e2e:cov",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy",
"prisma:seed": "prisma db seed",
"prisma:studio": "prisma studio",
"prisma:reset": "prisma migrate reset --force",
"db:setup": "npm run prisma:generate && npm run prisma:migrate && npm run prisma:seed",
"docker:build": "docker build -t finarva-api .",
"docker:run": "docker run -p 3000:3000 finarva-api",
"docker:compose": "docker-compose up -d",
"docker:compose:down": "docker-compose down",
"security:audit": "npm audit",
"security:fix": "npm audit fix",
"deps:check": "npm outdated",
"deps:update": "npm update",
"precommit": "npm run lint:check && npm run format:check && npm run test",
"prepare": "husky install",
"docs:generate": "compodoc -p tsconfig.json -s",
"docs:serve": "compodoc -p tsconfig.json -s --watch"
},
"dependencies": {
"@nestjs/axios": "^4.0.0",
"@nestjs/bullmq": "^11.0.3",
"@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/mapped-types": "^2.1.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/swagger": "^11.2.0",
"@nestjs/terminus": "^10.2.3",
"@pinecone-database/pinecone": "^6.1.2",
"@prisma/client": "^6.8.2",
"axios": "^1.9.0",
"bcryptjs": "^3.0.2",
"bullmq": "^5.56.10",
"cache-manager": "^7.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"helmet": "^7.1.0",
"ioredis": "^5.7.0",
"nestjs-rate-limiter": "^3.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pdfkit": "^0.17.2",
"prisma": "^6.8.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"stripe": "^18.5.0",
"swagger-ui-express": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"@sentry/node": "^7.99.0",
"winston": "^3.11.0",
"express-rate-limit": "^7.1.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.28.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/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/passport-jwt": "^4.0.1",
"@types/pdfkit": "^0.17.3",
"@types/supertest": "^6.0.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.7",
"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.0.0",
"typescript-eslint": "^8.33.1",
"@compodoc/compodoc": "^1.1.23",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"cross-env": "^7.0.3",
"nodemon": "^3.0.2",
"concurrently": "^8.2.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}