package.json 750 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "scraper",
  3. "version": "1.0.0",
  4. "description": "Scraper app to get data from animal crossing wiki",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "start": "nodemon",
  9. "build": "rm -rf ./build & tsc --p ./tsconfig.json"
  10. },
  11. "author": "Tatiana Inama",
  12. "license": "ISC",
  13. "dependencies": {
  14. "@types/cheerio": "^0.22.17",
  15. "@types/express": "^4.17.6",
  16. "@types/node-fetch": "^2.5.6",
  17. "@types/ramda": "^0.27.3",
  18. "@types/request-promise": "^4.1.46",
  19. "axios": "^0.19.2",
  20. "cheerio": "^1.0.0-rc.3",
  21. "dotenv": "^8.2.0",
  22. "express": "^4.17.1",
  23. "nodemon": "^2.0.3",
  24. "ramda": "^0.27.0",
  25. "ts-node": "^8.8.2",
  26. "typescript": "^3.8.3"
  27. }
  28. }