This repository has been archived by the owner on Sep 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
package.json
110 lines (110 loc) · 3.38 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
107
108
109
110
{
"name": "Mist",
"version": "0.12.0",
"license": "GPL-3.0",
"author": "Ethereum Mist Team <[email protected]>",
"description": "Ethereum Mist",
"repository": {
"type": "git",
"url": "https://github.com/ethereum/mist.git"
},
"scripts": {
"precommit": "pretty-quick --staged",
"postinstall": "git submodule update --init --recursive && yarn task pack-wallet && (cd interface && yarn)",
"dev:electron": "electron -r babel-register main.js",
"dev:meteor": "cd interface && meteor --no-release-check",
"dev:tools": "remotedev & (sleep 3 && open http://localhost:8000)",
"test:unit:once": "mocha --compilers babel-register ./tests/unit/ --recursive",
"test:unit": "yarn run test:unit:once --watch",
"test:e2e": "gulp test",
"build:wallet": "gulp --wallet",
"build:mist": "gulp --mist",
"build:interface": "cd interface && meteor-build-client ../build-interface -p ''",
"dist:mist": "gulp upload-queue --mist",
"dist:wallet": "gulp upload-queue --wallet",
"task": "gulp"
},
"main": "main.js",
"dependencies": {
"babel-preset-es2016-node5": "^1.1.2",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^4.0.1",
"bluebird": "^3.5.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.3.0",
"electron-redux": "^1.3.1",
"electron-store": "^2.0.0",
"electron-window-state": "^4.0.1",
"ethereum-client-binaries": "^1.6.4",
"ethereum-keyfile-recognizer": "^1.0.2",
"ethereumjs-abi": "^0.6.3",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.2",
"fs-promise": "^2.0.0",
"got": "^7.1.0",
"i18next": "^8.4.3",
"lodash": "^4.17.4",
"log-rotate": "^0.2.7",
"log4js": "^2.4.1",
"lokijs": "^1.4.3",
"minimongo-standalone": "^1.1.0-3",
"node-fetch": "^1.7.3",
"node-unzip-2": "^0.2.7",
"numeral": "^2.0.6",
"oboe": "^2.1.3",
"os-timesync": "^1.0.9",
"react-md-spinner": "^0.3.0",
"redux": "^3.7.2",
"redux-persist": "^5.10.0",
"redux-persist-electron-storage": "^1.1.2",
"redux-thunk": "^2.2.0",
"remote-redux-devtools": "^0.5.12",
"semver": "^5.1.0",
"solc": "0.4.24",
"swarm-js": "^0.1.38",
"typescript": "^2.2.2",
"underscore": "^1.8.3",
"underscore-deep-extend": "^1.1.5",
"uuid": "^3.0.1",
"web3": "^1.0.0-beta.33",
"ws": "^5.1.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"chai": "^4.1.1",
"co-mocha": "^1.2.0",
"colors": "^1.3.0",
"del": "^3.0.0",
"ecstatic": "^2.1.0",
"electron": "1.8.8",
"electron-builder": "^20.17.2",
"eslint": "^4.19.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"express": "^4.15.3",
"genomatic": "^1.0.0",
"geth-private": "^1.3.0",
"gh-release-assets": "^1.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-spawn-mocha": "^3.3.0",
"husky": "^0.14.3",
"json-structure-diff": "^0.0.2",
"meteor-build-client": "^0.4.1",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"prettier": "1.13.2",
"pretty-quick": "^1.4.1",
"redux-mock-store": "^1.3.0",
"remotedev-server": "^0.2.4",
"require-dir": "^0.3.2",
"run-sequence": "^2.1.0",
"semver-compare": "^1.0.0",
"shelljs": "^0.8.2",
"spectron": "3.8.0",
"xml2js": "^0.4.17"
}
}