package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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": "yarn 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. "lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
  19. "lint": "yarn lint:js",
  20. "test": "jest",
  21. "docs": "jsdoc -c 'jsdoc.json' ./"
  22. },
  23. "dependencies": {
  24. "@casl/ability": "^5.4",
  25. "@casl/vue": "^1.2",
  26. "@fortawesome/fontawesome-free": "^5.15",
  27. "@nuxt/components": "^2.2",
  28. "@nuxt/image": "^0.6.0",
  29. "@nuxt/typescript-runtime": "^2.0",
  30. "@nuxtjs/axios": "^5.13",
  31. "@nuxtjs/composition-api": "^0.29.3",
  32. "@nuxtjs/i18n": "^7.0",
  33. "@nuxtjs/vuetify": "^1.12.1",
  34. "@types/lodash": "^4.14",
  35. "@vuex-orm/core": "1.0.0-draft.14",
  36. "cookieparser": "^0.1",
  37. "core-js": "^3.17",
  38. "js-yaml": "^4.0",
  39. "libphonenumber-js": "^1.9.39",
  40. "lodash": "^4.17",
  41. "marked": "^3.0",
  42. "nuxt": "^2.15",
  43. "nuxt-leaflet": "^0.0",
  44. "postcss": "^8.3.6",
  45. "vue-i18n-composable": "^0.2",
  46. "vue-tel-input-vuetify": "^1.4.1",
  47. "vue-template-compiler": "^2.6",
  48. "webpack": "^4.46",
  49. "yaml-import": "^2.0"
  50. },
  51. "devDependencies": {
  52. "@nuxt/test-utils": "^0.2",
  53. "@nuxt/types": "^2.15",
  54. "@nuxt/typescript-build": "^2.0",
  55. "@nuxtjs/eslint-config": "^6.0",
  56. "@nuxtjs/eslint-config-typescript": "^6.0",
  57. "@nuxtjs/eslint-module": "^3.0",
  58. "@nuxtjs/moment": "^1.6",
  59. "@types/jest": "^27.0",
  60. "@vue/test-utils": "^1.1",
  61. "babel-core": "7.0.0-bridge.0",
  62. "babel-eslint": "^10.1",
  63. "babel-jest": "^27.1",
  64. "better-docs": "^2.3",
  65. "css-loader": "^4.2",
  66. "eslint": "^7.32",
  67. "eslint-plugin-nuxt": "^2.0",
  68. "jest": "^27.1",
  69. "jsdoc": "^3.6",
  70. "postcss-import": "^13.0",
  71. "postcss-loader": "^4.1",
  72. "postcss-url": "^10.1",
  73. "sass": "^1.32.12",
  74. "ts-jest": "^27.0",
  75. "vue-jest": "^3.0"
  76. },
  77. "resolutions": {
  78. "@nuxtjs/vuetify/**/sass": "1.32.12"
  79. }
  80. }