-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.2 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
{
"name": "stellar-lab-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/stellar/laboratory-backend",
"author": "Stellar Development Foundation <hello@stellar.org>",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.14.0",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"dev:watch": "nodemon --watch src --ext ts --exec ts-node src/index.ts",
"prisma:generate": "npx prisma generate",
"migrate": "npx prisma migrate dev",
"prisma:studio": "npx prisma studio",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.9.0",
"@sentry/node": "^10.39.0",
"@stellar/stellar-sdk": "^15.0.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"helmet": "^8.1.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"proxy-addr": "^2.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@prisma/client": "^6.19.3",
"@testcontainers/postgresql": "^12.0.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/proxy-addr": "^2.0.3",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"prisma": "^6.19.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"pnpm": {
"overrides": {
"test-exclude": "7.0.0",
"safer-buffer": "npm:buffer@^6.0.3",
"js-yaml": "^4.1.1",
"glob": "^13.0.0",
"axios": "^1.16.1",
"protobufjs": "^8.4.2",
"dockerode": "^5.0.0",
"brace-expansion": "^5.0.6"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --check"
]
}
}