NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "vue-theme",
  3. "version": "1.0.0",
  4. "description": "Wordpress SPA theme base",
  5. "main": "index.js",
  6. "scripts": {
  7. "dev": "webpack-dev-server --hot",
  8. "build": "webpack -p --env.production --progress --hide-modules",
  9. "test": "echo running contrived example command..."
  10. },
  11. "keywords": [
  12. "wordpress",
  13. "vue"
  14. ],
  15. "author": "TOJ",
  16. "license": "UNLICENSED",
  17. "devDependencies": {
  18. "@babel/core": "^7.12.10",
  19. "@babel/plugin-syntax-dynamic-import": "^7.8.3",
  20. "@babel/preset-env": "^7.12.11",
  21. "@vue/compiler-sfc": "^3.0.5",
  22. "axios": "^0.21.4",
  23. "babel-loader": "^8.2.2",
  24. "css-loader": "^3.6.0",
  25. "file-loader": "^6.2.0",
  26. "postcss-calc": "^7.0.5",
  27. "postcss-import": "^12.0.1",
  28. "postcss-loader": "^3.0.0",
  29. "precss": "^4.0.0",
  30. "pug": "^2.0.4",
  31. "pug-plain-loader": "^1.1.0",
  32. "style-loader": "^2.0.0",
  33. "sugarss": "^2.0.0",
  34. "url-loader": "^4.1.1",
  35. "vue-hot-reload-api": "^2.3.4",
  36. "vue-loader": "^16.1.2",
  37. "vue-template-compiler": "^2.6.12",
  38. "webpack": "^4.45.0",
  39. "webpack-cli": "^3.3.12",
  40. "webpack-dev-server": "^3.11.1"
  41. },
  42. "dependencies": {
  43. "chokidar": "^3.5.1",
  44. "compression-webpack-plugin": "^3.1.0",
  45. "vue": "^3.0.5",
  46. "vue-easy-lightbox": "^1.8.2",
  47. "vue-router": "^4.0.2",
  48. "vuex": "^4.0.0-rc.2"
  49. },
  50. "babel": {
  51. "presets": [
  52. [
  53. "@babel/preset-env",
  54. {
  55. "targets": {
  56. "browsers": [
  57. "last 2 Chrome versions",
  58. "last 2 Firefox versions"
  59. ]
  60. }
  61. }
  62. ]
  63. ],
  64. "comments": false,
  65. "plugins": [
  66. "@babel/plugin-syntax-dynamic-import"
  67. ]
  68. },
  69. "prettier": {
  70. "trailingComma": "all",
  71. "tabWidth": 4,
  72. "semi": false,
  73. "singleQuote": true,
  74. "bracketSpacing": true,
  75. "arrowParens": "avoid"
  76. }
  77. }