2017-07-03 22:28:56 -05:00
|
|
|
'use strict';
|
|
|
|
const path = require('path');
|
2017-04-11 23:59:58 -05:00
|
|
|
|
|
|
|
module.exports = {
|
2017-09-19 20:47:46 -04:00
|
|
|
port: process.env.HTTPS ? 3443 : 3000,
|
2017-04-24 18:36:59 -05:00
|
|
|
title: 'MEW',
|
2017-12-30 11:22:28 -05:00
|
|
|
publicPath: process.env.BUILD_DOWNLOADABLE ? './' : '/',
|
2017-04-11 23:59:58 -05:00
|
|
|
srcPath: path.join(__dirname, './../common'),
|
|
|
|
// add these dependencies to a standalone vendor bundle
|
|
|
|
vendor: [
|
2017-12-30 15:29:04 -05: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-03 22:28:56 -05:00
|
|
|
'react',
|
|
|
|
'react-dom',
|
2017-12-30 15:29:04 -05:00
|
|
|
'react-markdown',
|
|
|
|
'react-redux',
|
|
|
|
'react-router-dom',
|
2017-07-03 22:28:56 -05:00
|
|
|
'react-router-redux',
|
2017-12-30 15:29:04 -05:00
|
|
|
'react-transition-group',
|
|
|
|
'redux',
|
|
|
|
'redux-logger',
|
|
|
|
'redux-promise-middleware',
|
2017-07-26 03:13:25 +04:00
|
|
|
'redux-saga',
|
2017-12-30 15:29:04 -05:00
|
|
|
'scryptsy',
|
|
|
|
'store2',
|
|
|
|
'uuid',
|
|
|
|
'wallet-address-validator',
|
2017-07-03 22:28:56 -05:00
|
|
|
'whatwg-fetch'
|
2017-12-30 15:29:04 -05:00
|
|
|
]
|
2017-07-03 22:28:56 -05:00
|
|
|
};
|