package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. "lodash-es": "^4.17.21",
  18. "marked": "^2.1.3",
  19. "uuid": "^8.3.2",
  20. "vue": "^3.0.0",
  21. "vue-class-component": "^8.0.0-0",
  22. "vue-router": "^4.0.0-0",
  23. "vuex": "^4.0.0"
  24. },
  25. "devDependencies": {
  26. "@types/lodash": "^4.14.168",
  27. "@types/lodash-es": "^4.17.4",
  28. "@types/marked": "^2.0.3",
  29. "@types/materialize-css": "^1.0.9",
  30. "@types/uuid": "^8.3.0",
  31. "@typescript-eslint/eslint-plugin": "^4.18.0",
  32. "@typescript-eslint/parser": "^4.18.0",
  33. "@vue/cli-plugin-eslint": "~4.5.13",
  34. "@vue/cli-plugin-router": "~4.5.13",
  35. "@vue/cli-plugin-typescript": "~4.5.13",
  36. "@vue/cli-service": "^4.5.13",
  37. "@vue/compiler-sfc": "^3.0.0",
  38. "@vue/eslint-config-prettier": "^6.0.0",
  39. "@vue/eslint-config-typescript": "^7.0.0",
  40. "eslint": "^6.7.2",
  41. "eslint-plugin-prettier": "^3.3.1",
  42. "eslint-plugin-vue": "^7.0.0",
  43. "node-sass": "^5.0.0",
  44. "postcss": "^8.3.0",
  45. "prettier": "^2.2.1",
  46. "sass": "^1.32.8",
  47. "sass-loader": "^10.1.1",
  48. "tslib": "^2.2.0",
  49. "typescript": "~4.1.5",
  50. "webpack-bundle-analyzer": "^4.4.1"
  51. },
  52. "eslintConfig": {
  53. "root": true,
  54. "env": {
  55. "node": true
  56. },
  57. "extends": [
  58. "plugin:vue/vue3-essential",
  59. "eslint:recommended",
  60. "@vue/typescript/recommended",
  61. "@vue/prettier",
  62. "@vue/prettier/@typescript-eslint"
  63. ],
  64. "parserOptions": {
  65. "ecmaVersion": 2020
  66. },
  67. "rules": {
  68. "prettier/prettier": [
  69. "error",
  70. {
  71. "endOfLine": "auto",
  72. "printWidth": 100
  73. }
  74. ]
  75. }
  76. },
  77. "browserslist": [
  78. "> 1%",
  79. "last 2 versions",
  80. "not dead"
  81. ]
  82. }