-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
35 lines (35 loc) · 1.01 KB
/
package.json
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
{
"name": "@farcaster/auth-relay",
"version": "0.2.1",
"description": "Farcaster Auth relay server",
"private": true,
"type": "commonjs",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"lint": "biome format src/ --write && biome check src/ --apply",
"lint:ci": "biome ci src/",
"test": "yarn build && DOTENV_CONFIG_PATH=.env.test jest",
"test:ci": "yarn build && ENVIRONMENT=test NODE_OPTIONS=\"--max-old-space-size=4096\" DOTENV_CONFIG_PATH=.env.test jest --ci --forceExit --coverage",
"start": "yarn build && node build/app.js start"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@farcaster/hub-nodejs": "^0.11.24",
"@fastify/cors": "^8.4.2",
"@fastify/rate-limit": "^9.0.1",
"axios": "^1.7.4",
"dd-trace": "^5.21.0",
"dotenv": "^16.3.1",
"ethers": "^6.0.8",
"fastify": "^4.24.3",
"ioredis": "^5.3.2",
"neverthrow": "^6.1.0",
"siwe": "^2.1.4",
"viem": "^2.5.0"
},
"devDependencies": {
"jest": "^29.7.0"
}
}