mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-02-04 07:59:36 +05:30
Update and clean up frontend dependencies
This commit is contained in:
parent
6ea62bca08
commit
e93488de2c
@ -10,9 +10,7 @@ module.exports = function(config) {
|
||||
|
||||
// frameworks to use
|
||||
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
|
||||
//
|
||||
// NOTE: es5-shim был добавлен, так как phantomJS не может es5...
|
||||
frameworks: ['mocha', 'sinon', 'chai', 'es5-shim'],
|
||||
frameworks: ['mocha', 'sinon', 'chai'],
|
||||
|
||||
|
||||
// list of files / patterns to load in the browser
|
||||
|
29
package.json
29
package.json
@ -9,7 +9,7 @@
|
||||
"repository": "git@bitbucket.org:ErickSkrauch/ely.by-account.git",
|
||||
"scripts": {
|
||||
"start": "rm -rf dist/ && webpack-dev-server --progress --colors",
|
||||
"up": "npm i && cd ./webpack && npm i && cd ../scripts && npm i",
|
||||
"up": "npm update && cd ./webpack && npm update && cd ../scripts && npm update",
|
||||
"test": "karma start ./karma.conf.js",
|
||||
"lint": "eslint ./src",
|
||||
"i18n": "cd ./scripts && ./node_modules/.bin/babel-node i18n-collect.js",
|
||||
@ -18,45 +18,45 @@
|
||||
"dependencies": {
|
||||
"babel-polyfill": "^6.3.14",
|
||||
"classnames": "^2.1.3",
|
||||
"history": "^1.17.0",
|
||||
"history": "^3.0.0",
|
||||
"intl": "^1.2.2",
|
||||
"intl-format-cache": "^2.0.4",
|
||||
"intl-messageformat": "^1.1.0",
|
||||
"promise.prototype.finally": "^1.0.1",
|
||||
"react": "^15.0.0",
|
||||
"react-dom": "^15.0.0",
|
||||
"react-helmet": "^2.3.1",
|
||||
"react-helmet": "^3.1.0",
|
||||
"react-intl": "^2.0.0",
|
||||
"react-motion": "^0.4.0",
|
||||
"react-redux": "^4.0.0",
|
||||
"react-router": "^2.0.0",
|
||||
"react-router-redux": "^3.0.0",
|
||||
"redux": "^3.0.4",
|
||||
"redux-thunk": "^1.0.0",
|
||||
"whatwg-fetch": "^0.11.0"
|
||||
"redux-thunk": "^2.0.0",
|
||||
"whatwg-fetch": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.0.0",
|
||||
"babel-eslint": "^5.0.0-beta6",
|
||||
"babel-eslint": "^6.0.0",
|
||||
"babel-loader": "^6.0.0",
|
||||
"babel-plugin-react-intl": "~2.0.0",
|
||||
"babel-plugin-react-intl": "^2.0.0",
|
||||
"babel-plugin-transform-runtime": "^6.3.13",
|
||||
"babel-preset-airbnb": "^1.1.1",
|
||||
"babel-preset-airbnb": "^2.0.0",
|
||||
"babel-preset-es2015": "^6.3.13",
|
||||
"babel-preset-react": "^6.3.13",
|
||||
"babel-preset-react-hmre": "^1.0.1",
|
||||
"babel-preset-stage-0": "^6.3.13",
|
||||
"babel-runtime": "^5.6.15",
|
||||
"babel-runtime": "^6.0.0",
|
||||
"bundle-loader": "^0.5.4",
|
||||
"chai": "^3.0.0",
|
||||
"chokidar": "^1.2.0",
|
||||
"css-loader": "^0.23.0",
|
||||
"cssnano": "^3.4.0",
|
||||
"enzyme": "^2.2.0",
|
||||
"eslint": "^1.10.3",
|
||||
"eslint-plugin-react": "^3.13.1",
|
||||
"eslint": "^2.11.0",
|
||||
"eslint-plugin-react": "^5.0.0",
|
||||
"exports-loader": "^0.6.3",
|
||||
"extract-text-webpack-plugin": "^0.9.1",
|
||||
"extract-text-webpack-plugin": "^1.0.0",
|
||||
"file-loader": "^0.8.5",
|
||||
"fontgen-loader": "^0.2.1",
|
||||
"html-loader": "^0.4.3",
|
||||
@ -65,8 +65,7 @@
|
||||
"json-loader": "^0.5.4",
|
||||
"karma": "*",
|
||||
"karma-chai": "*",
|
||||
"karma-es5-shim": "*",
|
||||
"karma-mocha": "^0.2.1",
|
||||
"karma-mocha": "^1.0.0",
|
||||
"karma-nyan-reporter": "^0.2.3",
|
||||
"karma-phantomjs-launcher": "*",
|
||||
"karma-sinon": "^1.0.4",
|
||||
@ -77,7 +76,7 @@
|
||||
"mocha": "^2.2.5",
|
||||
"node-sass": "^3.4.2",
|
||||
"phantomjs-prebuilt": "^2.0.0",
|
||||
"postcss-loader": "^0.8.0",
|
||||
"postcss-loader": "^0.9.0",
|
||||
"postcss-url": "^5.1.1",
|
||||
"raw-loader": "^0.5.1",
|
||||
"react-addons-test-utils": "^15.0.2",
|
||||
|
@ -1,5 +1,4 @@
|
||||
import 'babel-polyfill';
|
||||
import 'promise.prototype.finally';
|
||||
import 'polyfills';
|
||||
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
|
2
src/polyfills.js
Normal file
2
src/polyfills.js
Normal file
@ -0,0 +1,2 @@
|
||||
import 'babel-polyfill';
|
||||
import 'promise.prototype.finally';
|
@ -1,3 +1,5 @@
|
||||
import 'polyfills';
|
||||
|
||||
// require all modules ending in "_test" from the
|
||||
// current directory and all subdirectories
|
||||
var testsContext = require.context(".", true, /\.test\.jsx?$/);
|
||||
|
Loading…
x
Reference in New Issue
Block a user