-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 2.98 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
{
"name": "web-wallet",
"version": "2.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "UNLICENSED",
"scripts": {
"commit-hook": "git add .",
"lint": "eslint './src/**/*.ts{,x}' --fix",
"prettier": "prettier --write \"**/*.+(ts|tsx)\"",
"watch": "webpack --env NODE_ENV=development --watch --progress --mode=development",
"serve": "webpack serve --mode=development",
"build": "webpack --env NODE_ENV=production --mode=production"
},
"pre-commit": [
"prettier",
"lint",
"commit-hook"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@linaria/babel-preset": "^3.0.0-beta.12",
"@linaria/shaker": "^3.0.0-beta.12",
"@linaria/webpack-loader": "^3.0.0-beta.7",
"@svgr/webpack": "^5.5.0",
"@types/chrome": "0.0.135",
"@types/node": "^16.4.10",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "7.0.3",
"css-loader": "^6.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"mini-css-extract-plugin": "^2.2.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1",
"svgo-loader": "^3.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "4.4.3",
"web-ext-types": "3.2.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@linaria/core": "^3.0.0-beta.4",
"@linaria/react": "^3.0.0-beta.7",
"@types/readable-stream": "^2.3.11",
"@unstoppabledomains/resolution": "^8.3.3",
"babel-polyfill": "^6.26.0",
"beam-wasm-client-masternet": "7.2.13168",
"browser-passworder": "^2.0.3",
"buffer": "^6.0.3",
"dnode": "^1.2.2",
"extensionizer": "^1.0.1",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"immer": "^9.0.6",
"jszip": "^3.7.1",
"patronum": "^1.1.0",
"post-message-stream": "^3.0.0",
"process": "^0.11.10",
"react": "^17.0.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.1",
"react-qr-code": "^2.0.3",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.2",
"react-toastify": "^8.1.0",
"readable-stream": "^3.1.1",
"redux": "^4.1.2",
"redux-saga": "^1.1.3",
"reselect": "^4.1.3",
"setimmediate": "^1.0.5",
"stream": "^0.0.2",
"typesafe-actions": "^5.1.0",
"util": "^0.12.4"
}
}