-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.89 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
{
"name": "usedapp-core",
"version": "0.0.4",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"repository": "[email protected]:Firstset/usedapp-core.git",
"author": "Ethworks",
"license": "MIT",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@ethereum-waffle/provider": "^3.2.2",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/lodash": "^4.14.170",
"@types/lodash.merge": "^4.6.6",
"@types/mocha": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/types": "^6.0.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "7.19.0",
"ethereum-waffle": "^3.2.2",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.1",
"mock-local-storage": "^1.1.17",
"prettier": "^2.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "17.0.1",
"@uniswap/token-lists": "^1.0.0-beta.27",
"@web3-react/core": "6.1.1",
"@web3-react/injected-connector": "6.0.7",
"@web3-react/network-connector": "6.1.5",
"ethers": "5.5.1",
"lodash.merge": "^4.6.2",
"nanoid": "3.1.22"
},
"peerDependencies": {
"react": "*"
},
"scripts": {
"build": "yarn run build:esm && yarn run build:cjs",
"build:esm": "tsc --module es2020 --target es2017 --outDir dist/esm",
"build:cjs": "tsc --outDir dist/cjs",
"test": "mocha --exit",
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint:eslint": "eslint './{src,test}/**/*.{ts,tsx}'",
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
}
}