This repository has been archived by the owner on Dec 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
106 lines (106 loc) · 3.14 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": "cyb",
"description": "Web3 browser",
"main": "public/electron.js",
"version": "0.1.3",
"author": {
"name": "cybercongress",
"email": "[email protected]"
},
"private": true,
"homepage": "./",
"dependencies": {
"@cybercongress/ui": "0.1.1",
"axios": "0.18.0",
"bech32": "1.1.3",
"bip39": "2.5.0",
"browser-passworder": "2.0.3",
"classnames": "^2.2.6",
"electron-pdf-window": "^1.0.12",
"ethereumjs-wallet": "0.6.3",
"ethers": "4.0.27",
"ethjs-provider-signer": "0.1.4",
"ethjs-query": "0.3.8",
"ethjs-signer": "0.1.1",
"ipfs-api": "^26.1.2",
"ipfs-unixfs": "0.1.16",
"ipld-dag-pb": "0.15.3",
"moment": "^2.22.2",
"number-to-bn": "1.7.0",
"prop-types": "15.6.2",
"rc-tooltip": "3.7.3",
"react": "16.8.6",
"react-click-outside": "github:tj/react-click-outside",
"react-dom": "16.8.6",
"react-loader-spinner": "2.3.0",
"react-redux": "5.0.7",
"react-router": "3.2.0",
"react-scripts": "2.0.4",
"redux": "4.0.0",
"redux-thunk": "2.3.0",
"rimraf": "2.6.2",
"ripemd160": "2.0.2",
"secp256k1": "3.5.2",
"sha256": "0.2.0",
"web3": "1.0.0-beta.33",
"web3-provider-engine": "14.0.6"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.4",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-polyfill": "6.26.0",
"concurrently": "4.0.1",
"copy-webpack-plugin": "4.6.0",
"css-loader": "1.0.1",
"electron": "3.0.2",
"electron-builder": "20.28.4",
"eslint": "5.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-standard-react": "7.0.2",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"file-loader": "2.0.0",
"html-webpack-plugin": "3.2.0",
"jest": "23.6.0",
"less": "3.8.1",
"less-loader": "4.1.0",
"mini-css-extract-plugin": "0.4.4",
"postcss-loader": "3.0.0",
"react-hot-loader": "4.3.12",
"style-loader": "0.23.1",
"wait-on": "3.0.1",
"webpack": "4.25.0",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.14"
},
"optionalDependencies": {
"jquery": "1.9.1 - 3"
},
"scripts": {
"react-dev": "webpack-dev-server --config webpack/webpack.config --mode development",
"build": "rimraf build && webpack --mode production --config webpack/webpack.config && yarn run build:preload",
"build:preload": "webpack --mode production --config webpack/preload",
"test": "jest",
"release": "rimraf dist && yarn run build && electron-builder --config electron/config.json",
"start": "concurrently \"BROWSER=none yarn run react-dev\" \"wait-on http://localhost:3000 && electron . --dev \""
},
"jest": {
"moduleNameMapper": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
}
}
}