package.json 3.6 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",
J
Jason Park 已提交
11
    "lint": "npm run lint:src && npm run lint:algorithm",
12 13
    "lint:src": "./node_modules/.bin/eslint --fix src",
    "lint:algorithm": "./node_modules/.bin/eslint --fix algorithm",
J
Jason Park 已提交
14
    "publish": "npm run lint && npm run build && git add . && git commit && git push"
N
nem035 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/parkjs814/AlgorithmVisualizer.git"
  },
  "keywords": [
    "algorithm",
    "visualizer"
  ],
  "author": "Jason Park & contributors",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/parkjs814/AlgorithmVisualizer/issues"
  },
  "homepage": "https://github.com/parkjs814/AlgorithmVisualizer#readme",
J
Jason Park 已提交
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 56 57
  "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 已提交
58 59 60 61 62
    "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 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76
    "express": "^4.15.4",
    "github-fork-ribbon-css": "^0.2.1",
    "html-webpack-plugin": "^3.2.0",
    "http-proxy-middleware": "^0.18.0",
    "imagemin-webpack-plugin": "^2.1.1",
    "js-cookie": "^2.1.4",
    "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",
    "react": "^16.3.1",
    "react-ace": "^5.10.0",
    "react-chartjs-2": "^2.7.0",
J
Jason Park 已提交
77 78
    "react-dnd": "^2.6.0",
    "react-dnd-html5-backend": "^2.6.0",
J
Jason Park 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    "react-dom": "^16.3.1",
    "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 已提交
101 102
  }
}