forked from OffchainLabs/arbitrum-token-lists
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.16 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.16 KB
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
{
"name": "arb-token-lists",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"main": "ts-node src/main.ts",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'",
"prettier:format": "yarn prettier './**/*.{js,json,md,ts,yml}' --write && yarn run lint --fix",
"prettier:check": "yarn prettier './**/*.{js,json,md,ts,yml}' --check && yarn run lint --fix",
"update": "yarn ts-node src/main.ts update",
"arbify": "yarn ts-node src/main.ts arbify",
"permit": "yarn ts-node src/main.ts permit",
"fullList": "yarn ts-node src/main.ts full --tokenList full --ignorePreviousList",
"allTokensList": "yarn ts-node src/main.ts alltokenslist --tokenList full",
"updateNova": "yarn ts-node src/main.ts update --l2NetworkID 42170",
"novaify": "yarn ts-node src/main.ts arbify --l2NetworkID 42170",
"fullNova": "yarn ts-node src/main.ts full --tokenList full --l2NetworkID 42170",
"test": "jest --runInBand --silent",
"test:integration": "yarn test --ci __test__/integration",
"test:unit": "yarn test --ci __test__/unit"
},
"dependencies": {
"@arbitrum/sdk": "^3.2.0",
"@types/jest": "^29.2.5",
"@uniswap/token-lists": "^1.0.0-beta.33",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^0.23.0",
"axios-retry": "^3.4.0",
"better-ajv-errors": "^1.1.2",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"graphql": "^15.6.1",
"graphql-request": "^3.6.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"yargs": "^17.2.1"
},
"devDependencies": {
"@offchainlabs/eslint-config-typescript": "^0.2.1",
"@offchainlabs/prettier-config": "^0.2.0",
"@types/node": "^16.11.1",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.3"
}
}