forked from tahowallet/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.67 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
{
"name": "@tallyho/tally-extension",
"private": true,
"version": "0.12.3",
"description": "Tally Ho, the community owned and operated Web3 wallet.",
"main": "index.js",
"repository": "[email protected]:thesis/tally-extension.git",
"author": "Matt Luongo <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"ethereum",
"bitcoin",
"cryptocurrency",
"wallet",
"web3",
"dapp"
],
"scripts": {
"start": "run-p devtools \"dev {@}\" --",
"generate:validators": "ts-node background/generate-validators.ts",
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"devtools": "remotedev --hostname=localhost --port=8000",
"lint": "run-p lint:*",
"lint-fix": "run-p lint:*:fix",
"lint:config": "prettier -c '**/*.@(json|yaml|toml)'",
"lint:config:fix": "prettier -w '**/*.@(json|yaml|toml)'",
"lint:docs": "prettier -c '**/*.md'",
"lint:docs:fix": "prettier -w '**/*.md'",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"test": "jest",
"preversion": "(which jq &>1 && which yq &>1) || (echo 'You must install jq and yq; scripts/macos-setup.sh for macOS.' && exit 1)",
"version": "scripts/update-version.sh",
"postversion": "git push --tags origin release-$npm_package_version",
"postinstall": "patch-package"
},
"workspaces": [
"ui",
"background",
"provider-bridge",
"provider-bridge-shared",
"window-provider"
],
"dependencies": {
"@ethersproject/providers": "5.5.3",
"@fortawesome/fontawesome-free": "^5.15.2",
"@tallyho/provider-bridge": "0.0.1",
"@tallyho/provider-bridge-shared": "0.0.1",
"@tallyho/tally-background": "0.0.1",
"@tallyho/tally-ui": "0.0.1",
"@tallyho/window-provider": "0.0.1",
"buffer": "^6.0.3",
"react": "^17.0.2",
"webext-options-sync": "^2.0.1",
"webextension-polyfill": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.14.5",
"@types/archiver": "^5.1.0",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/dotenv-webpack": "^7.0.3",
"@types/firefox-webext-browser": "^82.0.0",
"@types/jest": "^27.0.2",
"@types/react-router-dom": "^5.3.1",
"@types/remote-redux-devtools": "^0.5.5",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/webpack-livereload-plugin": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"archiver": "^5.3.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"dotenv-defaults": "^2.0.2",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.2",
"install": "^0.13.0",
"jest": "^27.2.2",
"npm": "^7.5.6",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"prettier": "^2.5.1",
"process": "^0.11.10",
"size-plugin": "^2.0.2",
"stream-browserify": "^3.0.0",
"styled-jsx": "^3.4.4",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"webpack": "^5.58.1",
"webpack-cli": "4.5.0",
"webpack-livereload-plugin": "^3.0.1",
"webpack-merge": "^5.8.0"
}
}