forked from mantlenetworkio/mantle-token-lists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2 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
61
62
63
64
65
{
"name": "@mantleio/tokenlist",
"description": "[Mantle] token list",
"version": "1.0.0",
"main": "index.js",
"homepage": "https://github.com/mantlenetworkio/mantle-token-lists#readme",
"license": "MIT",
"author": "Mantle",
"repository": {
"type": "git",
"url": "git+https://github.com/mantlenetworkio/mantle-token-lists.git"
},
"scripts": {
"validate": "ts-node ./bin/cli.ts validate",
"generate": "ts-node ./bin/cli.ts generate",
"build": "tsc -p ./tsconfig.json",
"test": "jest --detectOpenHandles",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "eslint --fix .",
"lint": "yarn lint:fix && yarn lint:check",
"start-bot": "ts-node ./src/bot.ts"
},
"devDependencies": {
"@actions/core": "^1.4.0",
"@babel/eslint-parser": "^7.18.2",
"@mantleio/common-ts": "^0.1.0",
"@mantleio/contracts": "^0.1.0",
"@mantleio/core-utils": "^0.1.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.0.3",
"@types/node": "^12.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@uniswap/token-lists": "^1.0.0-beta.30",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"commander": "^9.4.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^42.0.0",
"ethers": "^5.4.1",
"extract-zip": "^2.0.1",
"glob": "^8.0.3",
"jest": "^28.1.3",
"jsonschema": "^1.4.1",
"mocha": "^8.4.0",
"node-fetch": "2.6.7",
"octokit": "^2.0.7",
"prettier": "^2.3.1",
"ts-jest": "^29.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.2",
"typescript": "^4.6.2",
"uuid": "^9.0.0"
}
}