-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "lens",
"version": "0.1.0",
"description": "Unified Stellar price API — aggregates SDEX + AMM prices",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "node node_modules/prisma/build/index.js generate && tsc",
"start": "node dist/index.js",
"test": "vitest run",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset tag",
"oracle:relay": "tsx examples/oracle-relay/relay.ts",
"key:issue": "tsx scripts/issue-api-key.ts",
"db:push": "prisma db push",
"db:generate": "prisma generate"
},
"dependencies": {
"@fastify/compress": "^8.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/websocket": "^11.2.0",
"@prisma/client": "^5.0.0",
"@stellar/stellar-sdk": "^13.0.0",
"@x402/core": "^2.8.0",
"@x402/stellar": "^2.8.0",
"bullmq": "^5.0.0",
"dotenv": "^16.0.0",
"fastify": "^5.0.0",
"fastify-plugin": "^4.5.0",
"graphql": "^16.0.0",
"ioredis": "^5.0.0",
"mercurius": "^16.9.0",
"pg": "^8.0.0",
"prom-client": "^15.1.3",
"uuid": "^9.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.0.0",
"@types/uuid": "^9.0.0",
"@vitest/coverage-v8": "^4.1.5",
"prisma": "^5.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.5"
}
}