package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "admin",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "nuxt --hostname '0.0.0.0' --port 3002",
  7. "dev:local": "yarn dev --dotenv .env.local",
  8. "dev:preprod": "yarn dev --dotenv .env.preprod",
  9. "dev:prod": "yarn dev --dotenv .env.prod",
  10. "build": "nuxt build",
  11. "build:local": "yarn build --dotenv .env.local",
  12. "build:preprod": "yarn build --dotenv .env.preprod",
  13. "build:prod": "yarn build --dotenv .env.prod",
  14. "start": "nuxt start --hostname '127.0.0.1' --port 3002",
  15. "start:local": "yarn start --dotenv .env.local",
  16. "start:preprod": "yarn start --dotenv .env.preprod",
  17. "start:prod": "yarn start --dotenv .env.prod",
  18. "deploy": "git pull && yarn install && yarn build && pm2 start app",
  19. "lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
  20. "lint": "yarn lint:js",
  21. "test": "jest",
  22. "docs": "jsdoc -c 'jsdoc.json' ./"
  23. },
  24. "dependencies": {
  25. "@casl/ability": "^5.4",
  26. "@casl/vue": "^1.2",
  27. "@fortawesome/fontawesome-free": "^5.15",
  28. "@nuxt/components": "^2.2",
  29. "@nuxt/image": "^0.6.0",
  30. "@nuxt/typescript-runtime": "^2.0",
  31. "@nuxtjs/axios": "^5.13",
  32. "@nuxtjs/composition-api": "^0.29.3",
  33. "@nuxtjs/i18n": "^7.0",
  34. "@nuxtjs/vuetify": "^1.12.1",
  35. "@types/lodash": "^4.14",
  36. "@vuex-orm/core": "1.0.0-draft.16",
  37. "cookieparser": "^0.1",
  38. "core-js": "^3.17",
  39. "js-yaml": "^4.0",
  40. "libphonenumber-js": "^1.9.39",
  41. "lodash": "^4.17",
  42. "marked": "^3.0",
  43. "nuxt": "^2.15",
  44. "nuxt-leaflet": "^0.0",
  45. "postcss": "^8.3.6",
  46. "vue-advanced-cropper": "^1.9.0",
  47. "vue-i18n-composable": "^0.2",
  48. "vue-tel-input-vuetify": "^1.4.1",
  49. "vue-template-compiler": "^2.6",
  50. "vue-the-mask": "^0.11.1",
  51. "webpack": "^4.46",
  52. "yaml-import": "^2.0"
  53. },
  54. "devDependencies": {
  55. "@nuxt/test-utils": "^0.2",
  56. "@nuxt/types": "^2.15",
  57. "@nuxt/typescript-build": "^2.0",
  58. "@nuxtjs/eslint-config": "^6.0",
  59. "@nuxtjs/eslint-config-typescript": "^6.0",
  60. "@nuxtjs/eslint-module": "^3.0",
  61. "@nuxtjs/moment": "^1.6",
  62. "@types/jest": "^27.0",
  63. "@types/vue-the-mask": "^0.11.1",
  64. "@vue/test-utils": "^1.1",
  65. "babel-core": "7.0.0-bridge.0",
  66. "babel-eslint": "^10.1",
  67. "babel-jest": "^27.1",
  68. "better-docs": "^2.3",
  69. "css-loader": "^4.2",
  70. "eslint": "^7.32",
  71. "eslint-plugin-nuxt": "^2.0",
  72. "jest": "^27.1",
  73. "jsdoc": "^3.6",
  74. "postcss-import": "^13.0",
  75. "postcss-loader": "^4.1",
  76. "postcss-url": "^10.1",
  77. "sass": "^1.32.12",
  78. "ts-jest": "^27.0",
  79. "vue-jest": "^3.0"
  80. },
  81. "resolutions": {
  82. "@nuxtjs/vuetify/**/sass": "1.32.12"
  83. }
  84. }