package.json 3.3 KB
Newer Older
N
nem035 已提交
1 2
{
  "name": "algorithm-visualizer",
J
Jason Park 已提交
3
  "version": "2.0.0",
N
nem035 已提交
4 5
  "description": "Algorithm Visualizer",
  "scripts": {
J
Jason Park 已提交
6 7 8 9 10
    "dev": "NODE_ENV=development node bin/www",
    "start": "NODE_ENV=production node bin/www",
    "build": "npm run build:frontend && npm run build:backend",
    "build:frontend": "NODE_ENV=production node ./node_modules/webpack/bin/webpack --bail --progress --config webpack.frontend.config.js",
    "build:backend": "NODE_ENV=production node ./node_modules/webpack/bin/webpack --bail --progress --config webpack.backend.config.js",
11
    "lint": "./node_modules/.bin/eslint --fix src",
J
Jason Park 已提交
12
    "publish": "npm run lint && npm run build && git add . && git commit && git push"
N
nem035 已提交
13 14 15
  },
  "repository": {
    "type": "git",
16
    "url": "git+https://github.com/algorithm-visualizer/algorithm-visualizer.git"
N
nem035 已提交
17 18 19 20 21
  },
  "keywords": [
    "algorithm",
    "visualizer"
  ],
22 23 24 25
  "author": {
    "name": "Jinseo Jason Park",
    "email": "parkjs814@gmail.com",
    "url": "https://jasonpark.me/"
N
nem035 已提交
26
  },
27
  "license": "MIT",
J
Jason Park 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  "devDependencies": {
    "@fortawesome/fontawesome": "^1.1.5",
    "@fortawesome/fontawesome-free-brands": "^5.0.9",
    "@fortawesome/fontawesome-free-solid": "^5.0.9",
    "@fortawesome/react-fontawesome": "0.0.18",
    "autoprefixer": "latest",
    "axios": "latest",
    "axios-progress-bar": "^1.1.8",
    "babel-core": "^6.18.0",
    "babel-loader": "^7.1.2",
    "babel-plugin-transform-builtin-extend": "^1.1.2",
    "babel-plugin-transform-decorators-legacy": "^1.3.4",
    "babel-polyfill": "^6.26.0",
    "babel-preset-es2015": "^6.18.0",
    "babel-preset-react": "^6.24.1",
    "babel-preset-react-hmre": "^1.1.1",
    "babel-preset-stage-3": "^6.24.1",
    "bluebird": "latest",
    "body-parser": "^1.18.2",
    "brace": "latest",
    "chart.js": "^2.7.2",
    "clean-webpack-plugin": "^0.1.16",
    "compression": "latest",
    "connect-history-api-fallback": "^1.3.0",
    "cookie-parser": "^1.4.3",
    "copy-webpack-plugin": "^4.0.1",
    "css-hot-loader": "^1.3.9",
    "css-loader": "^0.28.7",
J
Jason Park 已提交
56 57 58 59 60
    "eslint": "^4.19.1",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-plugin-import": "^2.11.0",
    "eslint-plugin-jsx-a11y": "^6.0.3",
    "eslint-plugin-react": "^7.7.0",
J
Jason Park 已提交
61 62 63 64
    "express": "^4.15.4",
    "html-webpack-plugin": "^3.2.0",
    "http-proxy-middleware": "^0.18.0",
    "imagemin-webpack-plugin": "^2.1.1",
J
Jason Park 已提交
65
    "js-cookie": "^2.2.0",
J
Jason Park 已提交
66 67 68 69 70
    "mini-css-extract-plugin": "^0.4.0",
    "morgan": "^1.9.0",
    "node-sass": "^4.5.3",
    "postcss-flexboxfixer": "0.0.5",
    "postcss-loader": "^2.0.6",
71
    "raw-loader": "^0.5.1",
J
Jason Park 已提交
72 73 74 75
    "react": "^16.3.1",
    "react-ace": "^5.10.0",
    "react-chartjs-2": "^2.7.0",
    "react-dom": "^16.3.1",
J
Jason Park 已提交
76
    "react-input-autosize": "^2.2.1",
J
Jason Park 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
    "react-input-range": "^1.3.0",
    "react-markdown": "^3.3.0",
    "react-redux": "^5.0.6",
    "react-router": "^4.2.0",
    "react-router-dom": "^4.2.2",
    "react-router-redux": "^4.0.8",
    "react-toastify": "^3.4.3",
    "redbox-react": "^1.5.0",
    "redux": "^3.7.2",
    "redux-actions": "^2.2.1",
    "sass-loader": "^6.0.6",
    "screenfull": "^3.3.2",
    "style-loader": "^0.20.3",
    "uglifyjs-webpack-plugin": "^1.2.4",
    "uuid": "^3.2.1",
    "webpack": "^4.5.0",
    "webpack-bundle-analyzer": "^2.11.1",
    "webpack-cli": "^2.0.14",
    "webpack-dev-middleware": "^3.1.0",
    "webpack-hot-middleware": "^2.19.1",
    "webpack-node-externals": "^1.6.0"
N
nem035 已提交
98 99
  }
}