-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "recta-backend",
"version": "0.4.0-beta",
"type": "module",
"description": "Personal finance backend with household collaboration",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"prebuild": "npm run db:generate",
"build": "npm run db:generate && tsc",
"start": "node dist/index.js",
"start:cron": "node dist/jobs/processRecurrences.js",
"cron:process-recurrences": "node dist/jobs/processRecurrences.js",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:deploy": "prisma migrate deploy",
"db:resolve": "tsx src/shared/db/resolve-migration-cli.ts",
"script:recompute-balances": "tsx src/scripts/recompute-account-balances-safe.ts",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/formbody": "^8.0.2",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.1.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@types/node-cron": "^3.0.11",
"dotenv": "^17.2.3",
"fastify": "^4.26.2",
"firebase-admin": "^12.0.0",
"ioredis": "^5.3.2",
"node-cron": "^4.2.1",
"pg": "^8.16.3",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@types/pg": "^8.16.0",
"eslint": "^8.57.0",
"js-yaml": "^4.1.1",
"pino-pretty": "^13.1.3",
"prisma": "^7.2.0",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=20.0.0"
}
}