-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.66 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
{
"name": "tensor-wallet",
"version": "1.0.0",
"homepage": "https://kmadk.github.io/MycoNet",
"description": "A non-custodial, in-browser wallet for Bittensor. Quick and easy to use, but not audited.",
"author": "kmadk <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"prebuild": "yarn clean",
"build": "webpack",
"deep-clean": "yarn clean && rm -rf node_modules",
"clean": "rm -rf dist build tsconfig.tsbuildinfo",
"dev": "yarn run clean && tsc -b & webpack serve --config webpack.config.js",
"predeploy": "yarn run build && mv dist build",
"deploy": "gh-pages -d build"
},
"repository": {
"type": "git",
"url": "https://github.com/kmadk/MycoNet.git"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.10.0",
"@mui/styles": "^5.11.13",
"@polkadot/api": "^9.2.1",
"@polkadot/api-augment": "^9.2.1",
"@polkadot/app-settings": "^0.39.1",
"@polkadot/apps-config": "^0.120.1",
"@polkadot/extension-dapp": "^0.44.5",
"@polkadot/keyring": "^10.1.4",
"@polkadot/react-hooks": "^0.39.1",
"@polkadot/react-identicon": "^2.8.2",
"@polkadot/rpc-provider": "^9.2.1",
"@polkadot/types": "^9.2.1",
"@polkadot/ui-keyring": "^2.9.5",
"@polkadot/util": "^10.1.1",
"@polkadot/util-crypto": "^10.1.1",
"@types/node": "^18.7.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"jss-preset-default": "^10.10.0",
"qrcode.react": "^3.1.0",
"react": "^18.1.0",
"react-currency-input-field": "^3.6.9",
"react-dom": "^18.2.0",
"react-is": "^18.1.0",
"react-jss": "^10.10.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-window": "^1.8.8",
"regenerator-runtime": "^0.13.9",
"stream-browserify": "^3.0.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.18.12",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^8.2.5",
"babel-plugin-direct-import": "^1.0.0",
"buffer": "^6.0.3",
"gh-pages": "^4.0.0",
"style-loader": "^3.3.1",
"ts-import-plugin": "^2.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-bundle-analyzer": "^4.6.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
}
}