-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "shortcuts-registry",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"generate": "pnpm ts-node scripts/getShortcut.ts",
"generate:all": "pnpm ts-node scripts/getAllShortcuts.ts",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --check \"**/*.{mjs,js,json,md,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{mjs,js,json,md,ts,yml}\"",
"registryup": "pnpm install && forge soldeer update && forge remappings",
"simulate": "pnpm ts-node scripts/simulateShortcut.ts",
"simulate:crosschain": "pnpm ts-node scripts/crossChainSimulation.ts",
"execute": "pnpm ts-node scripts/executeShortcut.ts",
"verify": "pnpm ts-node scripts/verifyCampaign.ts",
"build": "pnpm ts-node scripts/buildTransaction.ts",
"lp": "pnpm ts-node scripts/lpDeposits.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"test:simulations": "pnpm vitest run test/integration/simulateShortcut.test.ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ensofinance/shortcuts-builder": "0.0.7",
"@ensofinance/shortcuts-standards": "1.0.65",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/solidity": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"**/*": [
"pnpm lint:fix",
"pnpm prettier:write",
"forge fmt"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}