package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "serman",
  3. "version": "1.0.0",
  4. "description": "Server monitoring and management tool",
  5. "main": "index.js",
  6. "scripts": {
  7. "dev": "npm run build && npm run run-dev",
  8. "build": "npm run back && npm run front",
  9. "back": "tsoa spec-and-routes",
  10. "front": "cd ./front && tsc && cd ../ && npm run webpack && npm run webpack-devel",
  11. "webpack": "npx webpack -o ./build/ --mode=production -c ./front/webpack.config.js --env=output=front.mins.js",
  12. "webpack-devel": "npx webpack -o ./build/ --mode=development -c ./front/webpack.config.js --env=output=front.js",
  13. "run": "tsoa spec-and-routes && npx ts-node src/index.ts",
  14. "run-dev": "nodemon src/index.ts",
  15. "generate-key": "npx ts-node src/index.ts --generate-key"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://git.craftlab.cc/isundil/serman"
  20. },
  21. "author": "isundil",
  22. "license": "GPG",
  23. "dependencies": {
  24. "@types/express": "^5.0.3",
  25. "@types/express-handlebars": "^5.3.1",
  26. "@types/swagger-ui-express": "^4.1.8",
  27. "express": "^5.1.0",
  28. "express-handlebars": "^8.0.3",
  29. "linux-systemd": "^0.0.1",
  30. "mariadb": "^3.4.5",
  31. "swagger-jsdoc": "^6.2.8",
  32. "swagger-ui-express": "^5.0.1",
  33. "systeminformation": "^5.27.8",
  34. "ts-node": "^10.9.2",
  35. "tsconfig-paths": "^4.2.0",
  36. "tsoa": "^6.6.0",
  37. "webpack": "^5.101.3",
  38. "webpack-cli": "^6.0.1"
  39. },
  40. "devDependencies": {
  41. "nodemon": "^3.1.10"
  42. }
  43. }