-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 893 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 893 Bytes
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
{
"name": "services",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun --watch --hot ./src/index.ts",
"start": "bun ./src/index.ts",
"lint": "bunx @biomejs/biome check --write . && bun typecheck",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@adraffy/ens-normalize": "^1.10.1",
"@octokit/rest": "^21.0.2",
"consola": "^3.2.3",
"exit-hook": "^4.0.0",
"heap-js": "^2.3.0",
"kysely": "^0.27.2",
"kysely-postgres-js": "^2.0.0",
"postgres": "^3.4.3",
"std-env": "^3.7.0",
"viem": "^2.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "^1.0.4",
"@types/node": "^20.11.6",
"bun": "1.1.45",
"dbmate": "^2.11.0",
"kysely-codegen": "^0.11.0",
"pg": "^8.11.3",
"typescript": "^5.3.3"
}
}