-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "@pie-dao/eth",
"version": "1.2.0",
"description": "PieDAO's eth wrapper. Provides connection and wallet state management.",
"main": "dist/index.js",
"repository": "https://github.com/pie-dao/eth.git",
"author": "Dan Matthews <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn lint && yarn clean && yarn rebuild",
"clean": "rimraf ./dist",
"lint": "npx eslint src/*.js src/**/*.jsx src/**/*.js",
"prerelease": "yarn build",
"rebuild": "yarn lint && babel src/ -d dist/",
"release": "npm publish --access=public"
},
"dependencies": {
"@pie-dao/abis": "^1.0.0",
"@pie-dao/eth-tailwind": "1.0.0",
"@pie-dao/if-unless": "^1.0.1",
"@pie-dao/utils": "^1.0.0",
"@risingstack/react-easy-state": "^6.2.0",
"bignumber.js": "^9.0.0",
"bnc-notify": "^1.1.0",
"ethers": "^4.0.45",
"ismobilejs": "^1.0.3",
"jazzicon": "^1.5.0",
"minimal-react-modal": "^1.0.2",
"prop-types": "^15.7.2",
"pubsub-js": "^1.8.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"simpleid-js-sdk": "^1.1.0",
"styled-components": "^5.0.1",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"rimraf": "^3.0.2"
}
}