forked from balancer/tokenlists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "@balancer/tokenlists",
"version": "1.0.0",
"description": "Balancer tokenlist generator",
"scripts": {
"generate": "ts-node src/generator.ts",
"tokenlist:create": "node src/lib/scripts/create-tokenlist.js",
"lint": "eslint . --ext .js,.ts --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@uniswap/token-lists": "^1.0.0-beta.31",
"cac": "^6.7.14",
"chalk": "^4",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.1.0",
"fs-extra": "^11.1.0",
"lodash": "^4.17.21",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.8.3",
"vitest": "^0.23.4"
}
}