forked from mysteriumnetwork/dvpn-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.05 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.05 KB
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
111
{
"name": "dvpn-web",
"productName": "Mysterium WebUI",
"version": "0.0.0-snapshot",
"description": "Mysterium WebUI is a web application for accessing Mysterium Network - decentralized VPN built on blockchain.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mysteriumnetwork/dvpn-web.git"
},
"author": {
"name": "Mysterium Network",
"email": "mysterium-dev@mysterium.network",
"url": "https://mysterium.network/"
},
"homepage": "/",
"bugs": {
"url": "https://github.com/mysteriumnetwork/dvpn-web/issues"
},
"keywords": [
"mysterium",
"vpn",
"dvpn",
"distributed-vpn",
"electron"
],
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"server": "./bin/run.sh",
"test": "react-scripts test",
"eject": "react-scripts eject",
"local_release": "yarn run build && tar -zcvf dist.tar.gz build/"
},
"proxy": "http://127.0.0.1:4449/",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@formatjs/intl-displaynames": "^5.2.4",
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.60",
"@mysteriumnetwork/terms": "0.0.35",
"@reduxjs/toolkit": "1.6.1",
"array-move": "^4.0.0",
"classnames": "^2.3.1",
"clipboard": "^2.0.8",
"decimal.js": "^10.3.1",
"immer": "^9.0.6",
"lodash": "^4.17.21",
"mysterium-vpn-js": "18.9.0",
"notistack": "1.0.10",
"qs": "^6.10.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-html-parser": "^2.0.2",
"react-qr-svg": "^2.2.2",
"react-redux": "7.2.4",
"react-responsive": "^9.0.0-beta.5",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-select": "^5.2.1",
"react-smooth-dnd": "^0.11.1",
"react-table": "^7.7.0",
"recharts": "2.0.10",
"showdown": "^1.9.1",
"typescript": "^4.2.4",
"use-immer": "^0.6.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/clipboard": "^2.0.1",
"@types/jest": "26.0.15",
"@types/lodash": "^4.14.161",
"@types/node": "^12.12.50",
"@types/node-sass": "^4.11.1",
"@types/qs": "^6.9.7",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-html-parser": "^2.0.1",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/react-table": "^7.7.6",
"@types/react-toast-notifications": "^2.4.0",
"@types/recharts": "^1.8.14",
"@types/showdown": "^1.9.3",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"msw": "^0.36.5",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2"
}
}