-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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
{
"name": "api-feed",
"type": "module",
"version": "1.0.0",
"description": "",
"author": "stuyk",
"main": "dist/index.js",
"scripts": {
"start": "vite-node ./src/index.ts",
"build": "pnpm build:deps && tsc",
"build:deps": "pnpm --filter {.}^... build",
"test": "vitest --exclude tests/smoke",
"test:smoke": "vitest run tests/smoke",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:push:force": "drizzle-kit push --force",
"push-and-start": "drizzle-kit push --force && build:deps && pnpm start"
},
"dependencies": {
"@atomone/chronostate": "^2.3.0",
"@atomone/dither-api-types": "workspace:*",
"@cosmjs/crypto": "^0.33.1",
"@cosmjs/encoding": "^0.33.1",
"@elysiajs/cors": "~1.2.0",
"@elysiajs/node": "~1.2.6",
"@keplr-wallet/cosmos": "^0.12.280",
"@sinclair/typebox": "^0.34.41",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.43.1",
"drizzle-typebox": "^0.3.3",
"elysia": "~1.2.25",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"pino": "^10.1.0",
"postgres": "^3.4.7",
"telegraf": "^4.16.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@cosmjs/amino": "^0.33.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/pg": "^8.15.5",
"drizzle-kit": "^0.31.5",
"pino-pretty": "^13.1.2",
"tsx": "^4.20.6",
"vite-node": "^3.2.4",
"vitest": "^3.2.4"
}
}