-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.79 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
{
"name": "mergepay-api",
"version": "0.1.0",
"private": true,
"description": "Mergepay API — Stellar-native group expense settlement backend.",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"worker": "tsx src/worker/index.ts",
"worker:start": "node dist/worker/index.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "eslint \"src/**/*.ts\"",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma db push --accept-data-loss",
"db:seed": "tsx prisma/seed.ts",
"gen:sep10key": "tsx scripts/gen-sep10-key.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/multipart": "^8.3.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.2.0",
"@prisma/client": "^5.18.0",
"@stellar/stellar-sdk": "^12.3.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.14",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"jsonwebtoken": "^9.0.2",
"nanoid": "^3.3.7",
"node-fetch": "^3.3.2",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"toml": "^3.0.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^8.57.0",
"prisma": "^5.18.0",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}