package.json 3.38 KB
Newer Older
冯超鹏's avatar
冯超鹏 committed
1 2 3 4 5 6 7 8 9 10 11
{
  "name": "laravue",
  "version": "0.6.0",
  "description": "A beautiful dashboard for Laravel built by VueJS",
  "author": "Tuan Duong <bacduong@gmail.com>",
  "license": "MIT",
  "private": true,
  "scripts": {
    "dev": "npm run development",
    "development": "cross-env NODE_ENV=development BABEL_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
    "watch": "npm run development -- --watch",
12
    "watch-poll": "npm run watch -- --watch-poll=5000",
冯超鹏's avatar
冯超鹏 committed
13 14 15 16 17 18
    "hot": "cross-env NODE_ENV=development BABEL_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
    "prod": "npm run production",
    "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
    "report": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --report --config=node_modules/laravel-mix/setup/webpack.config.js",
    "lint": "eslint --ext .js,.vue resources/js",
    "startb": "nodemon --watch src -e html,vue,js,scss build/build.js",
冯超鹏's avatar
冯超鹏 committed
19
    "start": "npm run dev"
冯超鹏's avatar
冯超鹏 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "resources/**/*.{js,vue}": [
      "eslint --fix",
      "git add"
    ]
  },
  "require": {
    "php": "^7.2",
    "fideloper/proxy": "^4.0",
    "laravel/framework": "^6.2",
    "laravel/tinker": "^1.0",
冯超鹏's avatar
冯超鹏 committed
37
    "symfony/translation-contracts": "^1.1.6"
冯超鹏's avatar
冯超鹏 committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
  },
  "devDependencies": {
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "babel-eslint": "^10.1.0",
    "babel-plugin-dynamic-import-node": "^2.3.0",
    "babel-plugin-syntax-dynamic-import": "^6.18.0",
    "babel-plugin-syntax-jsx": "^6.18.0",
    "babel-plugin-transform-vue-jsx": "^3.7.0",
    "compression-webpack-plugin": "^3.1.0",
    "cross-env": "^5.1",
    "eslint": "^5.16.0",
    "eslint-loader": "^2.2.1",
    "eslint-plugin-vue": "^5.2.3",
    "husky": "^3.0.5",
    "laravel-mix": "^4.1.4",
    "laravel-mix-eslint": "^0.1.3",
    "lint-staged": "^9.2.5",
    "nodemon": "^2.0.2",
    "resolve-url-loader": "^2.3.1",
    "sass-loader": "^7.1.0",
    "script-loader": "^0.7.2",
    "svg-sprite-loader": "^4.2.1",
    "vue-template-compiler": "2.6.10",
    "webpack": "^4.42.0",
    "webpack-bundle-analyzer": "^3.6.1",
    "webpack-cli": "^3.3.11"
  },
  "dependencies": {
    "axios": "^0.19.2",
    "babel-loader": "^8.1.0",
    "camelcase": "^5.3.1",
    "clipboard": "^2.0.6",
    "core-js": "^3.6.4",
    "css-loader": "^3.4.2",
    "driver.js": "^0.9.7",
    "dropzone": "^5.7.0",
    "echarts": "^4.6.0",
    "element-ui": "^2.12.0",
    "file-loader": "^6.0.0",
    "file-saver": "^2.0.2",
    "fuse.js": "^3.6.1",
    "js-cookie": "^2.2.1",
    "jsonlint": "^1.6.3",
    "jszip": "^3.2.2",
    "node-sass": "^4.13.1",
    "normalize.css": "^8.0.1",
    "nprogress": "^0.2.0",
    "path-to-regexp": "^3.1.0",
    "screenfull": "^4.2.1",
    "sortablejs": "^1.10.2",
    "tui-editor": "^1.4.6",
冯超鹏's avatar
冯超鹏 committed
89
    "v-viewer": "^1.5.1",
冯超鹏's avatar
冯超鹏 committed
90
    "vue": "2.6.10",
Administrator's avatar
Administrator committed
91
    "vue-amap": "^0.5.10",
冯超鹏's avatar
冯超鹏 committed
92 93 94 95 96 97 98 99 100 101
    "vue-count-to": "^1.0.13",
    "vue-i18n": "^8.15.5",
    "vue-loader": "^15.9.1",
    "vue-router": "^3.1.6",
    "vue-splitpane": "^1.0.4",
    "vuedraggable": "^2.23.0",
    "vuex": "3.1.1",
    "xlsx": "^0.15.5"
  }
}