-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 815 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 815 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
{
"scripts": {
"start": "bun run src/index.ts & bun run src/graphql.ts",
"start:rvm": "bun run src/index.ts",
"start:yoga": "bun run src/graphql.ts",
"dev": "bun run --hot src/index.ts",
"lint": "biome check . --write",
"format": "biome format . --write"
},
"dependencies": {
"@ipld/dag-cbor": "^9.2.1",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"@scure/base": "^1.1.7",
"drizzle-graphql": "^0.8.3",
"drizzle-orm": "^0.31.2",
"graphql": "^16.8.1",
"graphql-yoga": "^5.3.1",
"hono": "^4.4.5",
"multiformats": "^13.1.1",
"pg": "^8.12.0",
"viem": "^2.17.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/bun": "latest",
"@types/pg": "^8.11.6",
"drizzle-kit": "^0.22.7"
},
"type": "module"
}