-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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",
"postinstall": "cp patch/ethersCompat.d.ts node_modules/siwe/dist/ethersCompat.d.ts",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lit-protocol/constants": "^7.0.6",
"@lit-protocol/contracts": "^0.0.39",
"@lit-protocol/lit-node-client-nodejs": "^7.0.6",
"@simplewebauthn/server": "6.2.1",
"base64url": "^3.0.1",
"cbor": "^8.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"elliptic": "^6.6.1",
"ethereum-cryptography": "^2.1.3",
"ethers": "^5.7.2",
"express": "^4.20.0",
"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.3.2",
"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/jest": "^29.5.14",
"@types/jwk-to-pem": "^2.0.1",
"@types/node": "^16.7.4",
"@types/node-fetch": "^2.5.12",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^2.0.12",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}