-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
106 lines (106 loc) · 3.36 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
{
"name": "ever-wallet",
"version": "0.3.46",
"description": "EVER Wallet browser extension",
"scripts": {
"start": "webpack --mode=development --watch --stats-error-details --env beta",
"build:prod": "webpack --mode=production",
"build:beta": "webpack --mode=production --env beta",
"release:prod": "npm run build:prod && npm run compress -- -v prod",
"release:beta": "npm run build:beta && npm run compress -- -v beta",
"release": "rm -rf release && npm run release:beta && npm run release:prod",
"compress": "sh ./build/build.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/broxus/ever-wallet-browser-extension.git"
},
"author": "",
"license": "GNU GPL v3.0",
"dependencies": {
"@broxus/await-semaphore": "^0.1.5",
"@broxus/ever-wallet-wasm": "0.1.41",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"end-of-stream": "^1.4.4",
"everscale-inpage-provider": "0.3.65",
"fast-levenshtein": "^3.0.0",
"fast-safe-stringify": "^2.1.1",
"is-stream": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.memoize": "^4.1.2",
"lodash.uniqwith": "^4.5.0",
"loglevel": "^1.8.1",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"nanoid": "^4.0.2",
"nekoton-wasm": "1.4.2",
"obj-multiplex": "^1.0.0",
"object-code": "^1.2.4",
"post-message-stream": "^3.0.0",
"process": "^0.11.10",
"pump": "^3.0.0",
"punycode": "^2.3.0",
"rc-select": "^14.5.2",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.3",
"react-intl": "^6.4.3",
"react-qr-code": "^2.0.11",
"react-tooltip": "^5.13.1",
"react-transition-group": "^4.4.5",
"react-virtuoso": "^4.3.8",
"readable-stream": "4.3.0",
"reflect-metadata": "^0.1.13",
"semver": "^7.6.0",
"swiper": "^9.3.2",
"tsyringe": "^4.8.0",
"util": "^0.12.5",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@broxus/eslint-config": "2.1.0",
"@svgr/webpack": "^8.0.1",
"@types/chrome": "^0.0.237",
"@types/classnames": "^2.3.1",
"@types/end-of-stream": "^1.4.1",
"@types/fast-levenshtein": "^0.0.2",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.memoize": "^4.1.7",
"@types/lodash.uniqwith": "^4.5.9",
"@types/post-message-stream": "^3.0.1",
"@types/pump": "^1.1.1",
"@types/punycode": "^2.1.0",
"@types/react": "^18.2.8",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.2.4",
"@types/react-transition-group": "^4.4.6",
"@types/readable-stream": "^2.3.15",
"@types/semver": "^7.5.0",
"@types/webextension-polyfill": "^0.10.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "8.42.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.1",
"sass": "^1.62.1",
"sass-loader": "^13.3.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.3"
},
"overrides": {
"typescript": "$typescript"
}
}