This repository has been archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
66
67
68
69
{
"name": "token-bridge-sdk",
"version": "3.0.0-beta.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "SDK for transfering assets to and from Arbitrum",
"author": "Offchain Labs, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/OffchainLabs/token-bridge-sdk.git"
},
"bugs": {
"url": "https://github.com/OffchainLabs/token-bridge-sdk/issues"
},
"homepage": "https://offchainlabs.com",
"scripts": {
"prepublishOnly": "yarn build && yarn format",
"preversion": "yarn lint",
"build": "rm -rf ./dist && tsc",
"watch": "tsc --watch",
"lint": "tsc --noEmit && eslint src/**/*.ts --fix",
"format": "prettier --config-precedence file-override --write \"src/**/*.{tsx,ts,scss,md}\" && yarn run lint --fix",
"prepare": "install-peers",
"gen_docs": "jsdoc -c jsdoc.json src/hooks/* readme.md -d docs"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@rehooks/local-storage": "^2.3.0",
"@types/lodash.isempty": "^4.4.6",
"@uniswap/token-lists": "^1.0.0-beta.25",
"arb-ts": "1.0.0-beta.1",
"axios": "^0.21.4",
"ethers": "^5.4.6",
"graphql": "^15.5.3",
"lodash.clonedeep": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"typescript": "^3.8.3"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.isequal": "^4.5.5",
"@types/node": "^12.0.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"better-docs": "^2.3.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"install-peers-cli": "^2.2.0",
"jsdoc-to-markdown": "^6.0.1",
"prettier": "^2.0.2"
},
"files": [
"dist/**/*"
],
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}