-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.92 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
{
"name": "metrimask",
"version": "1.0.6",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"start": "yarn clean && mkdir dist && ./scripts/create-empty-thunk.sh && webpack --config webpack.dev.config.js --watch --devtool eval-cheap-module-source-map & yarn css-types -w",
"build": "yarn clean && webpack --mode production --config webpack.prod.config.js && ./scripts/create-empty-thunk.sh",
"css-types": "tcm src",
"postinstall": "yarn css-types",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx src/**",
"lint-fix": "eslint -c .eslintrc.js --ext .ts,.tsx src/** --fix",
"prepush": "npm run lint-fix"
},
"devDependencies": {
"@ceoimon/typed-css-modules": "^0.1.0",
"@material-ui/core": "4.0.2",
"@types/chrome": "^0.0.196",
"@types/classnames": "^2.2.4",
"@types/prop-types": "^15.5.3",
"@types/react": "18.0.0",
"@types/react-dom": "18.0.0",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^9.8.8",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "6.0.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"node-sass": "^7.0.1",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "5.0.0",
"postcss-modules": "4.3.1",
"react-router-dom": "6",
"sass-loader": "^7.0.3",
"style-loader": "3.0.0",
"ts-loader": "9.0.0",
"typescript": "4.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^4.1.1",
"web-ext-types": "^3.2.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"@material-ui/icons": "4.0.1",
"@types/bitcoinjs-lib": "4.0.1",
"@types/deep-equal": "^1.0.1",
"@types/history": "^5.0.0",
"@types/lodash": "^4.14.185",
"@types/qrcode.react": "^1.0.2",
"@types/scryptsy": "^2.0.0",
"@types/secp256k1": "^4.0.3",
"axios": "^0.27.2",
"bignumber.js": "^7.2.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "4.0.5",
"bitcoinjs-message": "^2.2.0",
"chrome-call": "^3.0.0",
"classnames": "^2.2.6",
"deep-equal": "^2.0.5",
"fetch-absolute": "^1.0.0",
"follow-redirects": "1.14.8",
"metrixjs-wallet": "https://github.com/TheLindaProjectInc/metrixjs-wallet.git#bitcoinlib-js-update",
"mobx": "^5.15.7",
"mobx-react": "^5.2.3",
"mobx-react-router": "^4.1.0",
"moment": "^2.29.4",
"mweb3": "^1.0.0",
"node-fetch": "2",
"qrcode.react": "^3.1.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"secp256k1": "^4.0.3",
"wif": "^2.0.6"
}
}