-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "@degoev/web3-utils",
"version": "1.1.23",
"description": "Web3 utils",
"author": "degoev",
"license": "ISC",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"dev": "next dev",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:quiet": "eslint --quiet . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"@metamask/jazzicon": "^2.0.0",
"@reduxjs/toolkit": "^1.9.3",
"@web3-react/injected-connector": "6.0.7",
"@web3-react/walletconnect-connector": "6.2.4",
"eslint-plugin-react": "^7.30.1",
"ethers": "^5.7.2",
"next": "^13.2.3"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/react-redux": "^7.1.24",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.0.3",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.6.1",
"rollup": "^2.78.0",
"whatwg-fetch": "^3.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/degoev/web3-utils.git"
},
"overrides": {},
"homepage": "https://github.com/degoev/web3-utils#readme"
}