2017-07-04 03:28:56 +00:00
|
|
|
'use strict';
|
|
|
|
const path = require('path');
|
2017-04-12 04:59:58 +00:00
|
|
|
|
|
|
|
module.exports = {
|
2017-09-20 00:47:46 +00:00
|
|
|
port: process.env.HTTPS ? 3443 : 3000,
|
2017-04-24 23:36:59 +00:00
|
|
|
title: 'MEW',
|
2017-12-30 16:22:28 +00:00
|
|
|
publicPath: process.env.BUILD_DOWNLOADABLE ? './' : '/',
|
2017-04-12 04:59:58 +00:00
|
|
|
srcPath: path.join(__dirname, './../common'),
|
|
|
|
// add these dependencies to a standalone vendor bundle
|
|
|
|
vendor: [
|
2017-12-30 20:29:04 +00:00
|
|
|
'bip39',
|
|
|
|
'bn.js',
|
|
|
|
'classnames',
|
|
|
|
'ethereum-blockies',
|
|
|
|
'ethereumjs-abi',
|
|
|
|
'ethereumjs-tx',
|
|
|
|
'ethereumjs-util',
|
|
|
|
'ethereumjs-wallet',
|
|
|
|
'hdkey',
|
|
|
|
'idna-uts46',
|
|
|
|
'jsonschema',
|
|
|
|
'lodash',
|
|
|
|
'moment',
|
|
|
|
'normalizr',
|
|
|
|
'qrcode',
|
|
|
|
'qrcode.react',
|
|
|
|
'query-string',
|
2017-07-04 03:28:56 +00:00
|
|
|
'react',
|
|
|
|
'react-dom',
|
2017-12-30 20:29:04 +00:00
|
|
|
'react-markdown',
|
|
|
|
'react-redux',
|
|
|
|
'react-router-dom',
|
2017-07-04 03:28:56 +00:00
|
|
|
'react-router-redux',
|
2017-12-30 20:29:04 +00:00
|
|
|
'react-transition-group',
|
|
|
|
'redux',
|
|
|
|
'redux-logger',
|
|
|
|
'redux-promise-middleware',
|
2017-07-25 23:13:25 +00:00
|
|
|
'redux-saga',
|
2017-12-30 20:29:04 +00:00
|
|
|
'scryptsy',
|
|
|
|
'store2',
|
|
|
|
'uuid',
|
|
|
|
'wallet-address-validator',
|
2017-07-04 03:28:56 +00:00
|
|
|
'whatwg-fetch'
|
2017-12-30 20:29:04 +00:00
|
|
|
]
|
2017-07-04 03:28:56 +00:00
|
|
|
};
|