-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
70
71
72
73
74
75
76
77
78
{
"name": "react-multisend",
"version": "2.1.0",
"main": "build/cjm/index.js",
"typings": "build/cjs/index.d.ts",
"module": "build/esm/index.js",
"repository": "git@github.com:gnosis/react-multisend.git",
"author": "Jan-Felix <jan-felix.schwarz@gnosis.io>",
"license": "MIT",
"files": [
"build",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "yarn build",
"prebuild": "rimraf build",
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:doc": "docz build",
"check": "yarn check:prettier && yarn check:lint && yarn check:spelling",
"check:lint": "eslint src --ext .ts,.tsx",
"check:prettier": "prettier \"src/**/*.(ts|tsx)\" --list-different",
"check:spelling": "cspell \"**\"",
"fix": "yarn fix:prettier && yarn fix:lint",
"fix:prettier": "prettier \"src/**/*.(ts|tsx)\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "jest",
"start": "docz dev"
},
"dependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/address": "^5.0.0",
"@ethersproject/bignumber": "^5.0.0",
"ethers-multisend": "^3.0.0",
"ethers-proxies": "^1.0.0"
},
"devDependencies": {
"@dnd-kit/core": "^4.0.0",
"@dnd-kit/modifiers": "^4.0.0",
"@dnd-kit/sortable": "^5.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@types/jest": "^27.0.2",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cspell": "^5.11.1",
"docz": "^2.3.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"ethers": "^5.5.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.2.4",
"nanoid": "^3.1.30",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"resolutions": {
"get-pkg-repo": "4.1.1",
"hosted-git-info": "^2.1.4"
},
"peerDependencies": {
"react": ">= 16.8"
}
}