forked from getwax/bls-wallet
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
120 lines (120 loc) · 4.21 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "bls-wallet-extension",
"version": "0.1.0",
"description": "Web extension for managing a BLS wallet",
"license": "MIT",
"private": true,
"repository": "https://github.com/jzaki/bls-wallet-extension.git",
"author": {
"name": "Andrew Morris",
"email": "[email protected]",
"url": "https://blswallet.org"
},
"engines": {
"yarn": ">=1.0.0"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack",
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
"check-ts": "node buildMultiNetworkConfig.js && tsc --noEmit",
"lint": "./scripts/addFileStubsIfNeeded.sh && eslint . --ext .ts,.tsx,.js --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"resolutions": {
"ethers": "5.5.4"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"@ethereumjs/tx": "^3.5.1",
"@tanstack/react-table": "^8.2.3",
"@types/bs58check": "^2.1.0",
"advanced-css-reset": "^1.2.2",
"async-mutex": "^0.3.2",
"axios": "^0.27.2",
"bls-wallet-clients": "0.8.1-758c7c4",
"browser-passworder": "^2.0.3",
"bs58check": "^2.1.2",
"crypto-browserify": "^3.12.0",
"emoji-log": "^1.0.2",
"eth-rpc-errors": "^4.0.3",
"ethers": "5.6.9",
"fast-deep-equal": "^3.1.3",
"fp-ts": "^2.12.1",
"io-ts": "^2.2.16",
"lodash-es": "^4.17.21",
"mcl-wasm": "^1.0.3",
"phosphor-react": "^1.4.0",
"qrcode.react": "^3.1.0",
"react": "^17.0.2",
"react-blockies": "^1.4.1",
"react-dom": "^17.0.2",
"react-modal": "^3.15.1",
"react-router-dom": "^6.2.1",
"sass": "^1.44.0",
"stream-browserify": "^3.0.0",
"typed-emitter": "^2.1.0",
"typescript": "^4.7.4",
"webext-base-css": "^1.3.2",
"webextension-polyfill": "^0.9.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/axios": "^0.14.0",
"@types/lodash-es": "^4.17.5",
"@types/react": "^17.0.37",
"@types/react-blockies": "^1.4.1",
"@types/react-dom": "^17.0.11",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"@types/react-table": "^7.7.9",
"@types/webextension-polyfill": "^0.9.0",
"@types/webpack": "^5.28.0",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"filemanager-webpack-plugin": "^7.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.4.5",
"postcss-loader": "^7.0.0",
"prettier": "^2.5.1",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^13.0.1",
"tailwindcss": "^3.0.13",
"terser-webpack-plugin": "^5.3.3",
"webpack": "~5.73.0",
"webpack-cli": "^4.10.0",
"webpack-ext-reloader": "^1.1.9",
"wext-manifest-loader": "^2.4.1",
"wext-manifest-webpack-plugin": "^1.2.1"
}
}