-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "rantom",
"version": "1.0.0",
"description": "Blockchain transaction reader for human",
"license": "MIT",
"scripts": {
"build": "rm -rf ./build && tsc",
"compile": "rm -rf ./build && tsc",
"pretty": "node scripts/pretty.js && prettier --write ./",
"start": "node build/cmd/index.js"
},
"dependencies": {
"@balancer-labs/sdk": "^1.0.5",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/chai": "^4.3.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.23",
"@types/pino-pretty": "^5.0.0",
"@types/yargs": "^17.0.10",
"@uniswap/sdk-core": "^3.2.2",
"@uniswap/v3-sdk": "^3.9.0",
"axios": "^1.6.2",
"bignumber.js": "^9.0.2",
"body-parser": "^1.20.0",
"bs58": "^5.0.0",
"chai": "^4.3.6",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"express": "^4.17.3",
"mocha": "^10.2.0",
"pino": "^9.1.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.6.2",
"toml-json": "^1.1.4",
"typescript": "^5.3.3",
"viem": "^2.12.3",
"web3": "^1.8.2",
"yargs": "^17.4.0"
},
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^@core/(.*)$",
"^@server/(.*)$",
"^@ui/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"printWidth": 120,
"semi": true,
"singleQuote": true
},
"packageManager": "[email protected]"
}