-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.89 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
{
"name": "predictify-backend",
"version": "0.0.1",
"description": "Backend API for Predictify — a Stellar/Soroban prediction-markets dApp",
"private": true,
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"check-env": "ts-node --transpile-only scripts/check-env.ts",
"predev": "npm run check-env",
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc -p tsconfig.json",
"prestart": "npm run check-env",
"start": "node dist/index.js",
"indexer": "node dist/workers/indexer.js",
"indexer:dev": "ts-node-dev --respawn --transpile-only src/workers/indexer.ts",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest",
"test:coverage": "jest --coverage",
"indexer:gap-scan": "ts-node-dev --transpile-only src/workers/indexerGapScan.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:check-drift": "ts-node scripts/check-drizzle-drift.ts"
},
"dependencies": {
"@stellar/stellar-sdk": "^12.0.0",
"drizzle-orm": "^0.45.2",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.0",
"pino": "^9.4.0",
"pino-http": "^10.3.0",
"prom-client": "^15.1.3",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.5",
"@types/pg": "^8.11.10",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"@types/uuid": "^10.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.62.0"
},
"engines": {
"node": ">=20"
}
}