package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "new_cash_book_node",
  3. "version": "1.0.0",
  4. "description": "",
  5. "type": "module",
  6. "main": "index.js",
  7. "scripts": {
  8. "dev": "pm2 start ecosystem.config.cjs",
  9. "dev:stop": "pm2 stop cashBook",
  10. "dev:del": "pm2 delete cashBook",
  11. "start": "node app.js",
  12. "serve": "nodemon app.js",
  13. "test": "echo \"Error: no test specified\" && exit 1"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/Johnhong9527/newCashBook.git"
  18. },
  19. "keywords": [],
  20. "author": "",
  21. "license": "ISC",
  22. "bugs": {
  23. "url": "https://github.com/Johnhong9527/newCashBook/issues"
  24. },
  25. "homepage": "https://github.com/Johnhong9527/newCashBook#readme",
  26. "dependencies": {
  27. "body-parser": "^1.20.3",
  28. "cors": "^2.8.5",
  29. "crypto": "^1.0.1",
  30. "dayjs": "^1.11.13",
  31. "express": "^4.21.1",
  32. "express-fileupload": "^1.5.1",
  33. "jsonwebtoken": "^9.0.2",
  34. "mysql": "^2.18.1",
  35. "mysql2": "^3.11.4",
  36. "nodemon": "^3.1.7",
  37. "spark-md5": "^3.0.2",
  38. "uuid": "^11.0.2"
  39. },
  40. "volta": {
  41. "node": "22.12.0"
  42. },
  43. "devDependencies": {
  44. "@types/express": "^5.0.0",
  45. "@types/express-fileupload": "^1.5.1",
  46. "@types/jsonwebtoken": "^9.0.7",
  47. "@types/mysql": "^2.15.26",
  48. "@types/node": "^22.9.0"
  49. },
  50. "imports": {
  51. "#db": "./db/index.js",
  52. "#utils": "./utils/index.js",
  53. "#environment": "./environment/index.js"
  54. }
  55. }