package.json 942 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "node_project",
  3. "version": "1.0.0",
  4. "description": "a test project about node",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "npx webpack --config=webpack.config.js ",
  8. "dev": "npx webpack --config=webpack.config.js --mode=development",
  9. "prod": "npx webpack --config=webpack.config.js --mode=production"
  10. },
  11. "author": "louis_wiki",
  12. "license": "ISC",
  13. "devDependencies": {
  14. "babel-loader": "^10.0.0",
  15. "browserslist": "^4.24.4",
  16. "clean-webpack-plugin": "^4.0.0",
  17. "eslint": "^7.32.0",
  18. "eslint-loader": "^4.0.2",
  19. "file-loader": "^6.2.0",
  20. "html-webpack-plugin": "^5.6.3",
  21. "webpack": "^5.99.5",
  22. "webpack-cli": "^6.0.1"
  23. },
  24. "dependencies": {
  25. "@vue/compiler-sfc": "^3.5.13",
  26. "css-loader": "^7.1.2",
  27. "element-plus": "^2.9.8",
  28. "style-loader": "^4.0.0",
  29. "vue": "^3.5.13",
  30. "vue-i18n": "^11.1.3",
  31. "vue-loader": "^17.4.2",
  32. "vue-router": "^4.5.0"
  33. }
  34. }