express TS backend
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

28 righe
806 B

  1. {
  2. "name": "job-portal",
  3. "version": "1.0.0",
  4. "description": "job portal backend node app",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
  8. "build": "tsc",
  9. "prestart": "npm run build",
  10. "start": "node .",
  11. "watch": "nodemon src/index.ts & tslint -c tslint.json -p tsconfig.json --fix & npm run build & node .",
  12. "test": "echo \"Error: no test specified\" && exit 1"
  13. },
  14. "author": "",
  15. "license": "ISC",
  16. "dependencies": {
  17. "axios": "^0.21.4",
  18. "express": "^4.17.1",
  19. "nodemon": "^2.0.12"
  20. },
  21. "devDependencies": {
  22. "@types/express": "^4.17.13",
  23. "@types/node": "^16.9.4",
  24. "tslint": "^6.1.3",
  25. "typescript": "^4.4.3"
  26. }
  27. }