-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "zeistal",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "biome check ./",
"lint:fix": "biome check --write .",
"start": "node index.js",
"dev": "nodemon index.js",
"gen:keys": "node scripts/generateKeys.js",
"lint:sol": "solhint 'Contracts/**/*.sol'"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@chainlink/contracts": "^1.4.0",
"@openzeppelin/contracts": "^5.1.0",
"@xmtp/node-sdk": "^2.1.0",
"axios": "^1.7.7",
"bignumber.js": "^4.0.4",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"cron": "^3.2.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"mongoose": "^8.8.0",
"nanoid": "^5.1.5",
"node-cron": "^3.0.3",
"nodemailer": "^7.0.5",
"siwe": "^3.0.0",
"telegraf": "^4.16.3",
"uuid": "^11.1.0",
"viem": "^2.29.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"chai": "^4.5.0",
"ethers": "^6.13.4",
"hardhat": "^2.22.17",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"prettier-plugin-solidity": "^2.0.0",
"solhint": "^5.1.0",
"ts-node": "^10.9.2"
}
}