-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "token-lists",
"version": "2.28.0",
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"checksum": "bun run index.ts checksum",
"generate": "bun run index.ts generate",
"makelist": "bun run index.ts makelist",
"makeindex": "bun run index.ts makeindex",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"fetch": "bun run index.ts fetch",
"test": "bun test",
"ci-check": "bun run index.ts ci-check"
},
"dependencies": {
"@ethersproject/address": "^5.1.0",
"@pancakeswap/awgmi": "^0.0.5",
"@pancakeswap/token-lists": "^0.0.8",
"ajv": "6.12.2",
"aptos": "^1.3.16",
"axios": "^0.26.0",
"ethers": "^5.5.4",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"lodash": "^4.17.21",
"slugify": "^1.6.0",
"tslib": "^2.4.0",
"viem": "^1.7.0"
},
"devDependencies": {
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/bun": "^1.0.0",
"@types/lodash": "^4.14.182",
"@types/node": "^15.0.2",
"rollup": "^2.47.0",
"typescript": "^4.6.3"
}
}