forked from Ubeswap/default-token-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "@ubeswap/default-token-list",
"version": "3.3.11",
"description": "Ubeswap default token list",
"main": "ubeswap.token-list.json",
"repository": "[email protected]:ubeswap/default-token-list.git",
"author": "Ian Macalinao <[email protected]>",
"license": "MIT",
"devDependencies": {
"@ethersproject/address": "^5.4.0",
"@types/node": "^16.3.2",
"@uniswap/token-lists": "^1.0.0-beta.25",
"ajv": "^8.6.1",
"ajv-formats": "^2.1.0",
"deepmerge": "^4.2.2",
"husky": ">=7.0.1",
"lint-staged": ">=11.0.1",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{js,css,md,json,yaml,yml,ts}": "prettier --write"
},
"scripts": {
"build": "ts-node scripts/cleanupTokens.ts && ts-node scripts/buildLists.ts && prettier --write .",
"lint": "ts-node scripts/validateLists.ts",
"prepack": "npm run build && git add .",
"prepare": "husky install"
},
"files": [
"ubeswap.token-list.json",
"ubeswap-experimental.token-list.json"
],
"prettier": {}
}