-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 839 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 839 Bytes
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
{
"name": "plugins",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "ts-node lib/build-executor.ts",
"postinstall": "pnpm run build"
},
"keywords": [],
"author": "",
"license": "",
"dependencies": {
"@openzeppelin/relayer-sdk": "^1.10.0",
"@types/node": "^24.0.3",
"esbuild": "^0.25.0",
"ethers": "^6.14.3",
"ioredis": "^5.7.0",
"piscina": "^4.7.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/ioredis-mock": "^8.2.6",
"@types/jest": "^29.5.12",
"@types/uuid": "^10.0.0",
"husky": "^9.1.7",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"ts-node": "^10.9.2"
}
}