-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.94 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.94 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": "voting-services-api",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bunx eslint . --quiet && bun build src/index.ts --outdir ./dist --target bun",
"start": "bun run dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"db:test:setup": "DATABASE_URL=postgresql://postgres:postgres@localhost:5556/postgres_test bun run db:migrate",
"db:test:up": "docker compose up -d postgres-test",
"db:test:down": "docker compose down postgres-test"
},
"dependencies": {
"@farcaster/quick-auth": "^0.0.7",
"@neynar/nodejs-sdk": "^3.25.0",
"@sentry/bun": "^8.28.0",
"@sentry/profiling-node": "^8.28.0",
"@xmtp/node-sdk": "^3.2.0",
"dotenv": "^17.2.0",
"drizzle-orm": "^0.44.3",
"hono": "^4.8.5",
"postgres": "^3.4.7",
"uint8arrays": "^5.1.0",
"viem": "^2.33.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "^8.15.4",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"drizzle-kit": "^0.31.4",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tsx": "^4.20.3",
"typescript": "^5.8.2",
"vitest": "^3.2.4"
}
}