Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mashaal committed Apr 1, 2017
1 parent 90f11f4 commit 3c7e8c3
Show file tree
Hide file tree
Showing 3 changed files with 4,162 additions and 38 deletions.
65 changes: 30 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,58 @@
{
"name": "Destroyer",
"version": "1.0.0",
"version": "2.0.0",
"description": "Lossless Audio Player",
"main": "index.js",
"private": true,
"scripts": {
"clean": "rm -r bundle || true",
"prebuild": "npm run clean",
"prebuild": "yarn run clean",
"build": "NODE_ENV=development webpack --progress",
"build:watch": "npm run build -- --watch",
"build:watch": "yarn run build -- --watch",
"start": "electron index.js",
"ffmpeg": "node ./ffbinaries.js",
"pack:osx": "rm -rf Destroyer-darwin-x64 && NODE_ENV=production webpack --progress -p && electron-packager ./ Destroyer --platform=darwin --arch=x64 --icon=icons.icns --prune"
},
"author": "omar mashaal",
"license": "ISC",
"dependencies": {
"date-fns": "^1.23.0",
"electron-window-state": "^4.0.1",
"extract-zip": "^1.6.0",
"fluent-ffmpeg": "2.0.1",
"date-fns": "^1.28.2",
"electron": "^1.6.5",
"electron-window-state": "^4.1.0",
"fuzzy-search": "^1.4.0",
"in-view": "^0.6.1",
"key": "^0.1.11",
"leftpad": "0.0.0",
"musicmetadata": "^2.0.5",
"radium": "^0.18.1",
"react": "^15.4.1",
"react-addons-shallow-compare": "^15.4.1",
"react-dom": "^15.4.1",
"radium": "^0.18.2",
"react": "^15.4.2",
"react-addons-shallow-compare": "^15.4.2",
"react-dom": "^15.4.2",
"redux": "^3.6.0",
"scroll-animator": "^1.1.0",
"walk": "^2.3.9"
},
"devDependencies": {
"archiver": "^1.3.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"electron": "^1.4.13",
"electron-packager": "^8.4.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"exports-loader": "^0.6.3",
"ffbinaries": "^0.1.2",
"file-loader": "^0.9.0",
"imports-loader": "^0.7.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0"
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"electron-packager": "^8.6.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.1.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.1.1",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.0",
"imports-loader": "^0.7.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.2"
},
"babel": {
"presets": [
Expand Down
5 changes: 2 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const config = {
loaders: [{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'babel',
loader: 'babel-loader',
query: {
cacheDirectory: true
}
Expand All @@ -25,8 +25,7 @@ const config = {
}]
},
resolve: {
extensions: ['', '.js', '.jsx'],
root: path.join(__dirname, 'src')
extensions: ['.js', '.jsx']
},
plugins: [
new webpack.EnvironmentPlugin(['NODE_ENV'])
Expand Down
Loading

0 comments on commit 3c7e8c3

Please sign in to comment.