-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "super-accounts-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "sleep 3 && tsx --watch src/index.ts",
"start": "sleep 3 && tsx src/index.ts",
"dev:debug": "sleep 3 && tsx --watch --inspect=9229 src/index.ts",
"start:debug": "sleep 3 && tsx --inspect=9229 src/index.ts"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/api": "^6.9.0",
"@bull-board/express": "^6.9.0",
"@covalenthq/client-sdk": "^1.0.2",
"@duneanalytics/client-sdk": "^0.2.4",
"@ethereum-attestation-service/eas-contracts": "1.2.0-beta.0",
"@ethereum-attestation-service/eas-sdk": "^2.2.0",
"@farcaster/auth-client": "^0.7.0",
"@gelatonetwork/relay-sdk": "^5.5.6",
"@merkl/api": "^0.21.47",
"@privy-io/server-auth": "^1.11.0",
"@reown/appkit-siwe": "^1.5.2",
"@safe-global/api-kit": "^2.5.11",
"@safe-global/protocol-kit": "^5.2.4",
"@safe-global/relay-kit": "^3.4.2",
"@safe-global/safe-core-sdk-types": "^4.1.0",
"@safe-global/types-kit": "^1.0.1",
"@selfxyz/core": "^1.1.0-beta.7",
"@supabase/supabase-js": "^2.43.1",
"alchemy-sdk": "^3.5.4",
"axios": "^1.7.2",
"bullmq": "^5.48.0",
"connect-redis": "^8.0.1",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"ethers": "^6.12.1",
"express": "^4.19.2",
"express-session": "^1.18.1",
"graphql": "^16.9.0",
"http": "^0.0.1-security",
"http-proxy-middleware": "^3.0.5",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"pg": "^8.16.3",
"redis": "^4.7.0",
"siwe": "^2.3.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@graphprotocol/client-cli": "^3.0.3",
"@types/cors": "^2.8.17",
"@types/express": "4.17.21",
"@types/express-session": "^1.18.0",
"@types/morgan": "^1.9.9",
"@types/node": "^20.17.7",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}