forked from LIT-Protocol/relay-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "relay-server",
"version": "1.0.0",
"description": "Relay Server for facilitating interactions with Lit Protocol smart contracts.",
"main": "index.js",
"scripts": {
"dev": "nodemon index.ts",
"start": "node dist/index.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@simplewebauthn/server": "6.2.1",
"base64url": "^3.0.1",
"cbor": "^8.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"elliptic": "^6.5.4",
"ethers": "^5.7.1",
"express": "^4.17.1",
"express-rate-limit": "^6.6.0",
"google-auth-library": "^8.7.0",
"js-base64": "^3.7.2",
"node-fetch": "^2.6.0",
"rate-limit-redis": "^3.0.1",
"redis": "^4.4.0",
"siwe": "2.1.3",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@types/cbor": "^6.0.0",
"@types/cors": "^2.8.12",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.13",
"@types/jwk-to-pem": "^2.0.1",
"@types/node": "^16.7.4",
"@types/node-fetch": "^2.5.12",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}