├── .gitignore ├── README.md ├── nodemon.json ├── package.json ├── src ├── index.ts ├── tools.ts └── types │ └── index.d.ts ├── test ├── example.env ├── index.js └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env 4 | **last-donatur.json** -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/README.md -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /test/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/test/example.env -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/test/index.js -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatowProject/trakteer-scraper/HEAD/tsconfig.json --------------------------------------------------------------------------------