package.json 2.1 KB

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