summaryrefslogtreecommitdiff
path: root/package.json
blob: eeb7020e52dd84acc56ee1d478a7b96908de81c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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"
  }
}