forked from CityOfZion/neon-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
192 lines (192 loc) · 6.08 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"name": "Neon",
"version": "0.1.1",
"main": "./main.js",
"description": "Light wallet for NEO blockchain",
"homepage": "https://github.com/CityOfZion/neon-wallet",
"author": "Ethan Fast <[email protected]> (https://github.com/Ejhfast)",
"scripts": {
"postinstall": "electron-builder install-app-deps && electron-rebuild --force --module_dir . -w node-hid -v 1.7.9",
"start": "cross-env NODE_ENV=production electron .",
"assets": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.prod",
"dev": "cross-env PORT=3000 START_HOT=1 NODE_ENV=development node_modules/.bin/webpack-dev-server --config ./config/webpack.config.dev",
"start-dev": "cross-env PORT=3000 NODE_ENV=development electron . --enable-logging --remote-debugging-port=9222",
"assets-dev": "cross-env PORT=3000 NODE_ENV=development webpack --config ./config/webpack.config.dev",
"test": "npm rebuild node-hid && jest --coverage",
"test-ci": "yarn test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:e2e": "ava __e2e__/*.e2e.js --timeout=120s",
"test-watch": "jest --watch",
"pack": "build --dir",
"dist": "yarn assets && yarn build",
"lint": "eslint -c .eslintrc ./app --ext .js,.jsx --ignore-pattern dist/",
"lint-fix": "eslint -c .eslintrc ./app --ext .js,.jsx --fix --ignore-pattern dist/",
"prepush": "echo 'running flow...' && yarn flow && echo 'running lint...' && yarn lint && echo 'running tests...' && yarn test",
"electron-rebuild": "electron-rebuild --force --module_dir . -w node-hid",
"flow": "flow check",
"release-master": "./scripts/release-master.sh",
"clean": "rm -r app/dist/*"
},
"keywords": [],
"license": "ISC",
"build": {
"appId": "com.electron.neon",
"files": [
"./main.js",
"app/dist/index.html",
"app/dist/bundle.js",
"app/dist/style.css"
],
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
}
},
"dependencies": {
"axios": "0.17.0",
"base-x": "3.0.2",
"bigi": "1.4.2",
"bignumber.js": "5.0.0",
"bs58check": "2.0.2",
"buffer": "5.0.8",
"classnames": "2.2.5",
"cleave.js": "1.0.7",
"coveralls": "3.0.0",
"crypto-js": "3.1.9-1",
"ecurve": "1.0.5",
"electron-context-menu": "0.9.1",
"electron-json-storage": "4.0.2",
"electron-save-file": "1.0.2",
"elliptic": "6.4.0",
"es6-promisify": "^5.0.0",
"file-loader": "1.1.5",
"fs": "0.0.1-security",
"global": "4.3.2",
"history": "4.7.2",
"isomorphic-fetch": "2.2.1",
"js-scrypt": "0.2.0",
"lodash": "4.17.4",
"neon-js": "git+https://github.com/cityofzion/neon-js.git#2.3.1",
"node-hid": "0.5.7",
"qrcode": "0.9.0",
"raf": "3.4.0",
"react": "16.1.1",
"react-click-outside": "3.0.0",
"react-data-grid": "2.0.73",
"react-dom": "16.1.1",
"react-hot-loader": "3.1.1",
"react-icons": "2.2.7",
"react-modal": "3.1.2",
"react-notification-system": "0.2.16",
"react-redux": "5.0.6",
"react-router-dom": "4.2.2",
"react-split-pane": "0.1.68",
"react-syntax-highlighter": "5.8.0",
"react-test-renderer": "16.1.1",
"react-tippy": "1.2.2",
"recompose": "^0.26.0",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-saga": "^0.16.0",
"redux-thunk": "2.2.0",
"reselect": "^3.0.1",
"secure-random": "1.1.1",
"sifter": "0.5.3",
"uuid": "^3.2.1",
"wif": "2.0.6"
},
"devDependencies": {
"autoprefixer": "7.1.6",
"ava": "0.23.0",
"axios-mock-adapter": "1.9.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.2",
"babel-loader": "7.1.2",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"cross-env": "5.1.1",
"css-loader": "0.28.7",
"electron": "1.7.9",
"electron-builder": "19.49.4",
"electron-devtools-installer": "2.2.1",
"electron-packager": "9.1.0",
"electron-rebuild": "1.6.0",
"enzyme": "3.1.1",
"enzyme-adapter-react-16": "1.1.0",
"enzyme-to-json": "3.2.1",
"eslint": "4.10.0",
"eslint-config-standard": "10.2.1",
"eslint-config-standard-react": "5.0.0",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "21.2.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.4.0",
"eslint-plugin-standard": "3.0.1",
"extract-text-webpack-plugin": "3.0.2",
"flow-bin": "0.58.0",
"html-webpack-plugin": "2.30.1",
"husky": "0.14.3",
"identity-obj-proxy": "3.0.0",
"jest": "21.2.1",
"json-loader": "0.5.7",
"node-sass": "4.6.0",
"redux-devtools-extension": "2.13.2",
"redux-mock-store": "1.3.0",
"resolve-url-loader": "2.2.0",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"spectron": "3.7.2",
"style-loader": "0.19.0",
"uglifyjs-webpack-plugin": "1.0.1",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|sass|scss)$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"__tests__/testHelpers.js",
"__tests__/setupTests.js"
],
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setupTests.js"
}
}