You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
893 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. {
  2. "name": "express-ts",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "scripts": {
  6. "test": "echo \"Error: no test specified\" && exit 1",
  7. "start": "ts-node src/index.ts",
  8. "dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
  9. "build": "tsc",
  10. "serve": "node dist/index.js"
  11. },
  12. "keywords": [],
  13. "author": "",
  14. "license": "ISC",
  15. "description": "",
  16. "dependencies": {
  17. "body-parser": "^2.1.0",
  18. "cors": "^2.8.5",
  19. "express": "^5.0.1",
  20. "morgan": "^1.10.0",
  21. "multer": "^1.4.5-lts.1",
  22. "ws": "^8.18.1"
  23. },
  24. "devDependencies": {
  25. "@types/body-parser": "^1.19.5",
  26. "@types/cors": "^2.8.17",
  27. "@types/express": "^5.0.0",
  28. "@types/morgan": "^1.9.9",
  29. "@types/multer": "^1.4.12",
  30. "@types/node": "^22.13.4",
  31. "@types/ws": "^8.5.14",
  32. "nodemon": "^3.1.9",
  33. "ts-node": "^10.9.2",
  34. "typescript": "^5.7.3"
  35. }
  36. }