-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "t2cr-to-ipfs",
"version": "0.2.1",
"description": "Pulls token information from the kleros t2cr and publishes them to ipfs following uniswap/token-lists schema.",
"main": "src/index.ts",
"repository": "git+https://github.com/kleros/t2cr-to-ipfs",
"author": "Kleros",
"license": "MIT",
"private": false,
"scripts": {
"start": "node ./build/index.js",
"build": "rm -rf ./build && tsc"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@secretlint/secretlint-rule-preset-recommend": "^2.1.0",
"@secretlint/secretlint-rule-secp256k1-privatekey": "^2.1.0",
"@types/jest": "^26.0.4",
"@types/level": "^6.0.2",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.12",
"@types/node-fetch": "^2.5.7",
"@types/sharp": "^0.28.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"secretlint": "^2.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@ensdomains/ens-contracts": "^0.0.22",
"@filebase/client": "^0.0.5",
"@uniswap/token-lists": "^1.0.0-beta.33",
"ajv": "^6.12.3",
"content-hash": "^2.5.2",
"dotenv-safe": "^8.2.0",
"eth-ens-namehash": "^2.0.8",
"ethers": "^5.0.26",
"level": "^8.0.0",
"lodash": "^4.17.19",
"node-fetch": "^2.6.0",
"sharp": "^0.32.6"
},
"volta": {
"node": "16.20.2",
"yarn": "1.22.22"
}
}