package.json 669 B

1234567891011121314151617181920212223242526
  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. },
  10. "author": "Tatiana Inama",
  11. "license": "ISC",
  12. "dependencies": {
  13. "@types/cheerio": "^0.22.17",
  14. "@types/express": "^4.17.6",
  15. "@types/node-fetch": "^2.5.6",
  16. "@types/ramda": "^0.27.3",
  17. "@types/request-promise": "^4.1.46",
  18. "axios": "^0.19.2",
  19. "cheerio": "^1.0.0-rc.3",
  20. "express": "^4.17.1",
  21. "nodemon": "^2.0.3",
  22. "ramda": "^0.27.0",
  23. "ts-node": "^8.8.2",
  24. "typescript": "^3.8.3"
  25. }
  26. }