package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "bdlg-scheduler",
  3. "version": "1.0.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "stage": "vue-cli-service build --mode staging",
  8. "build": "vue-cli-service build",
  9. "lint": "vue-cli-service lint",
  10. "deploy": "Copy-Item -Path C:\\Users\\Clovis\\Desktop\\code\\javascript\\bdlg-scheduler\\dist\\* -Destination C:\\Users\\Clovis\\Desktop\\code\\java\\bdlg.planner\\src\\main\\resources\\static -PassThru -Force"
  11. },
  12. "dependencies": {
  13. "dayjs": "^1.10.4",
  14. "fuse.js": "^6.4.6",
  15. "jc-timeline": "git+http://gitlab.jaquin.fr/clovis/jc-timeline.git",
  16. "lodash": "^4.17.21",
  17. "postcss": "^8.2.13",
  18. "uuid": "^8.3.2",
  19. "vue": "^3.0.0",
  20. "vue-class-component": "^8.0.0-0",
  21. "vue-router": "^4.0.0-0",
  22. "vuex": "^4.0.0"
  23. },
  24. "devDependencies": {
  25. "@types/lodash": "^4.14.168",
  26. "@types/materialize-css": "^1.0.9",
  27. "@types/uuid": "^8.3.0",
  28. "@typescript-eslint/eslint-plugin": "^4.18.0",
  29. "@typescript-eslint/parser": "^4.18.0",
  30. "@vue/cli-plugin-eslint": "~4.5.0",
  31. "@vue/cli-plugin-router": "~4.5.0",
  32. "@vue/cli-plugin-typescript": "~4.5.0",
  33. "@vue/cli-service": "~4.5.0",
  34. "@vue/compiler-sfc": "^3.0.0",
  35. "@vue/eslint-config-prettier": "^6.0.0",
  36. "@vue/eslint-config-typescript": "^7.0.0",
  37. "eslint": "^6.7.2",
  38. "eslint-plugin-prettier": "^3.3.1",
  39. "eslint-plugin-vue": "^7.0.0",
  40. "node-sass": "^5.0.0",
  41. "prettier": "^2.2.1",
  42. "sass": "^1.32.8",
  43. "sass-loader": "^10.1.1",
  44. "tslib": "^2.2.0",
  45. "typescript": "~4.1.5",
  46. "webpack-bundle-analyzer": "^4.4.1"
  47. },
  48. "eslintConfig": {
  49. "root": true,
  50. "env": {
  51. "node": true
  52. },
  53. "extends": [
  54. "plugin:vue/vue3-essential",
  55. "eslint:recommended",
  56. "@vue/typescript/recommended",
  57. "@vue/prettier",
  58. "@vue/prettier/@typescript-eslint"
  59. ],
  60. "parserOptions": {
  61. "ecmaVersion": 2020
  62. },
  63. "rules": {
  64. "prettier/prettier": [
  65. "error",
  66. {
  67. "endOfLine": "auto",
  68. "printWidth": 100
  69. }
  70. ]
  71. }
  72. },
  73. "browserslist": [
  74. "> 1%",
  75. "last 2 versions",
  76. "not dead"
  77. ]
  78. }