summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json60
1 files changed, 54 insertions, 6 deletions
diff --git a/package.json b/package.json
index 377ae72d..47c5664c 100644
--- a/package.json
+++ b/package.json
@@ -1,22 +1,70 @@
{
- "name": "megapixels_dev",
+ "name": "megapixels",
"version": "1.0.0",
- "description": "",
- "main": "index.js",
+ "description": "The Darkside of Datasets",
+ "main": "client/index.js",
"scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
+ "watch": "NODE_ENV=development webpack --config ./webpack.config.dev.js --colors --watch",
+ "buildDev": "NODE_ENV=development webpack --config ./webpack.config.dev.js --colors",
+ "build": "NODE_ENV=production webpack --config ./webpack.config.prod.js",
+ "deploy": "NODE_ENV=production webpack --config ./webpack.config.prod.js && git commit -am 'deploy' && git push origin master && ssh vframe@vframe ./restart.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamhrv/megapixels_dev.git"
},
- "author": "",
+ "author": "megapixels@megapixels.cc",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/adamhrv/megapixels_dev/issues"
},
"homepage": "https://github.com/adamhrv/megapixels_dev#readme",
"dependencies": {
- "node-fetch": "^2.2.0"
+ "aws-sdk": "^2.322.0",
+ "clean-webpack-plugin": "^0.1.19",
+ "compression-webpack-plugin": "^2.0.0",
+ "connected-react-router": "^4.3.0",
+ "csv-stringify": "^4.3.1",
+ "data-uri-to-blob": "0.0.4",
+ "data-uri-to-buffer": "^2.0.0",
+ "date-fns": "^1.29.0",
+ "dotenv": "^6.0.0",
+ "fetch-jsonp": "^1.1.3",
+ "file-saver": "^2.0.0-rc.3",
+ "history": "^4.7.2",
+ "node-fetch": "^2.2.0",
+ "prop-types": "^15.6.1",
+ "react": "^16.3.0",
+ "react-dom": "^16.3.0",
+ "react-hot-loader": "^4.3.0",
+ "react-redux": "^5.0.7",
+ "redux": "^4.0.0",
+ "redux-thunk": "^2.3.0",
+ "store2": "^2.7.0",
+ "tabulator-tables": "^4.1.3"
+ },
+ "devDependencies": {
+ "babel-cli": "^6.24.1",
+ "babel-core": "^6.24.1",
+ "babel-eslint": "^8.2.2",
+ "babel-loader": "^7.0.0",
+ "babel-plugin-transform-class-properties": "^6.24.1",
+ "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
+ "babel-plugin-transform-object-rest-spread": "^6.23.0",
+ "babel-plugin-transform-react-jsx": "^6.24.1",
+ "babel-plugin-transform-runtime": "^6.23.0",
+ "babel-preset-env": "^1.5.1",
+ "css-loader": "^1.0.0",
+ "eslint": "^4.19.1",
+ "eslint-config-airbnb-base": "^13.0.0",
+ "eslint-plugin-class-property": "^1.1.0",
+ "eslint-plugin-import": "^2.9.0",
+ "eslint-plugin-react": "^7.11.1",
+ "html-webpack-plugin": "^3.0.4",
+ "style-loader": "^0.21.0",
+ "uglifyjs-webpack-plugin": "^1.3.0",
+ "webpack": "3.x.x",
+ "webpack-cli": "^3.1.0",
+ "webpack-dev-server": "2.x.x"
}
}