summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..eeb7020
--- /dev/null
+++ b/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "gun-violence",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "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",
+ "watchProd": "NODE_ENV=production webpack --config ./webpack.config.prod.js --colors --watch",
+ "deploy": "webpack --config ./webpack.config.prod.js && git add -A && git commit -am 'deploy bundle' && git push"
+ },
+ "author": "",
+ "license": "",
+ "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",
+ "clean-webpack-plugin": "^0.1.19",
+ "compression-webpack-plugin": "^2.0.0",
+ "css-loader": "^1.0.0",
+ "html-webpack-plugin": "^3.0.4",
+ "style-loader": "^0.21.0",
+ "uglifyjs-webpack-plugin": "^1.3.0",
+ "webpack": "3.x.x",
+ "webpack-cli": "^3.3.6",
+ "webpack-dev-server": "2.x.x"
+ },
+ "dependencies": {
+ "csv-parse": "^2.5.0"
+ }
+}