-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.21 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
{
"name": "efp-public-api",
"version": "0.0.0",
"description": "Ethereum Follow Protocol Public API",
"type": "module",
"scripts": {
"build": "bunx wrangler deploy --dry-run --outdir=dist --minify=true --latest=true",
"clean": "rm -rf dist .wrangler node_modules",
"dev": "bunx wrangler dev --latest=true",
"dev:remote": "bun dev --remote",
"database:generate-types": "kysely-codegen --dialect='postgres' --type-only-imports --log-level='error' --out-file='./src/types/generated/index.ts' && bun format",
"docker:api": "docker compose --file='compose.yml' --project-name='efp-api' up --build --force-recreate --remove-orphans --always-recreate-deps --renew-anon-volumes api",
"docker:ping": "docker compose --file='compose.yml' --project-name='efp-api' up --build --force-recreate --remove-orphans --always-recreate-deps --renew-anon-volumes ping",
"format": "bunx @biomejs/biome format . --write",
"fix": "bun lint && bun format",
"lint": "bunx @biomejs/biome check --write . && bun typecheck",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "vitest --run",
"test:typecheck": "vitest --typecheck",
"update-dependencies": "bun ./scripts/update-dependencies.ts"
},
"dependencies": {
"@adraffy/ens-normalize": "^1.10.1",
"@cf-wasm/photon": "^0.1.20",
"@types/supertest": "^6.0.3",
"aws4fetch": "^1.0.18",
"consola": "^3.2.3",
"hono": "^3.12.7",
"kysely": "^0.27.2",
"kysely-postgres-js": "^2.0.0",
"postgres": "^3.4.3",
"qr-image": "^3.2.0",
"redis": "^4.7.0",
"supertest": "^7.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20240117.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "^1.0.4",
"@types/node": "^20.11.6",
"@types/qr-image": "^3.2.9",
"bun": "^1.0.25",
"kysely-codegen": "^0.11.0",
"pg": "^8.11.3",
"typescript": "^5.3.3",
"vitest": "^1.2.1",
"wrangler": "4"
},
"repository": "github:ethereumfollowprotocol/api",
"homepage": "github:ethereumfollowprotocol/api/README.md",
"contributors": ["Omar Aziz <omar@ethfollow.xyz> esm.eth", "Cory Gabrielsen <cory@ethfollow.xyz> cory.eth"],
"sideEffects": false
}