Files
koodiklinikka.fi/package.json
Olavi Haapala ca5b251c7c Fix some performance issues
* Remove render blocking stripe JS that seems unnecessary
* Use native lazy loading of images
  - Truly a progressive enhancement, only affects browsers that support it
  - Causes a warning: [Intervention] An <img> element was lazyloaded with loading=lazy, but had no dimensions specified. Specifying dimensions improves performance. See https://crbug.com/954323, which can not be easily fixed
* Render content first, hydrate after that
2020-09-22 21:46:25 +03:00

49 lines
1.3 KiB
JSON

{
"name": "koodiklinikka",
"version": "1.0.0",
"description": "Koodiklinikka homepage",
"author": "Riku Rouvila <riku@rare.fi>",
"license": "MIT",
"scripts": {
"start": "next",
"build": "next build && next export",
"dev": "SERVER=http://localhost:9000/ ENV=development next",
"prod": "ENV=production next build && next export",
"lint": "eslint --ext .jsx --ext .js .",
"prettify": "prettier --write components pages styles"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-stylus": "^1.0.1",
"axios": "^0.20.0",
"classnames": "^2.2.6",
"font-awesome": "^4.7.0",
"less": "^3.10.3",
"lodash": "^4.17.15",
"next": "^9.1.2",
"next-fonts": "^1.4.0",
"parse-github-event": "^1.1.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-ga": "^3.1.2",
"react-time-ago": "^6.0.1",
"stylus": "^0.54.7",
"twitter-text": "^3.0.0"
},
"devDependencies": {
"@types/node": "14.11.2",
"@types/react": "16.9.49",
"babel-eslint": "^10.0.3",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"prettier": "^2.1.2",
"typescript": "4.0.3"
},
"prettier": {
"trailingComma": "es5"
}
}