-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.32 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
{
"name": "chainlens-backend",
"version": "1.0.0",
"description": "Multi-chain NFT scanner backend for ChainLens",
"main": "backend-server.js",
"scripts": {
"start": "node backend-server.js",
"dev": "node --watch backend-server.js",
"check": "node --check backend-server.js && node --check chat-service.js && node --check auth-session.js && node --check search-service.js && node --check non-evm-scanner.js && node --check public/chain-catalog.js && node --check public/wallet-providers.js && node --check public/search-activity.js && node --check public/theme-engine.js",
"test": "node --test test/*.test.js",
"test:e2e": "playwright test"
},
"dependencies": {
"@abstract-foundation/agw-client": "^1.11.0",
"@abstract-foundation/agw-react": "^1.11.0",
"@defillama/api": "^0.1.3",
"@noble/hashes": "^1.8.0",
"@simplewebauthn/server": "^13.3.2",
"@supabase/supabase-js": "^2.98.0",
"@tanstack/react-query": "^5.90.21",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethers": "^6.16.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.3",
"node-fetch": "^2.7.0",
"tweetnacl": "^1.0.3",
"viem": "^2.47.1",
"wagmi": "^2.19.5"
},
"engines": {
"node": "22.x"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "1.61.1"
}
}