package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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/core": "^7.27.1",
  15. "@babel/preset-env": "^7.27.2",
  16. "babel-loader": "^10.0.0",
  17. "browserslist": "^4.24.4",
  18. "clean-webpack-plugin": "^4.0.0",
  19. "eslint": "^7.32.0",
  20. "eslint-loader": "^4.0.2",
  21. "file-loader": "^6.2.0",
  22. "html-webpack-plugin": "^5.6.3",
  23. "webpack": "^5.99.5",
  24. "webpack-cli": "^6.0.1"
  25. },
  26. "dependencies": {
  27. "@vue/compiler-sfc": "^3.5.13",
  28. "animate.css": "^4.1.1",
  29. "cannon-es": "^0.20.0",
  30. "css-loader": "^7.1.2",
  31. "element-plus": "^2.9.8",
  32. "path": "^0.12.7",
  33. "style-loader": "^4.0.0",
  34. "three": "^0.176.0",
  35. "three-orbitcontrols-ts": "^0.1.2",
  36. "vue": "^3.5.13",
  37. "vue-i18n": "^11.1.3",
  38. "vue-loader": "^17.4.2",
  39. "vue-router": "^4.5.0"
  40. }
  41. }