package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. "animate.css": "^4.1.1",
  27. "css-loader": "^7.1.2",
  28. "element-plus": "^2.9.8",
  29. "style-loader": "^4.0.0",
  30. "three": "^0.176.0",
  31. "three-orbitcontrols-ts": "^0.1.2",
  32. "vue": "^3.5.13",
  33. "vue-i18n": "^11.1.3",
  34. "vue-loader": "^17.4.2",
  35. "vue-router": "^4.5.0"
  36. }
  37. }