├── .dockerignore ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md └── app ├── __tests__ └── lighthouse.test.js ├── app.js ├── controllers ├── lightouse.js └── reportCtrl.js ├── package-lock.json ├── package.json ├── start.js └── utils └── utils.js /.dockerignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | app/node_modules/ 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/README.md -------------------------------------------------------------------------------- /app/__tests__/lighthouse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/__tests__/lighthouse.test.js -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/app.js -------------------------------------------------------------------------------- /app/controllers/lightouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/controllers/lightouse.js -------------------------------------------------------------------------------- /app/controllers/reportCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/controllers/reportCtrl.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/package.json -------------------------------------------------------------------------------- /app/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/start.js -------------------------------------------------------------------------------- /app/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Antoinebr/docker-google-lighthouse-express/HEAD/app/utils/utils.js --------------------------------------------------------------------------------