{ "name": "joinlemmy-site", "description": "A site for join-lemmy", "author": "Dessalines ", "license": "AGPL-3.0", "scripts": { "build:dev": "webpack --mode=development", "build:prod": "webpack --mode=production", "clean": "yarn run rimraf dist", "lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src", "postinstall": "husky install", "prebuild:dev": "yarn clean", "prebuild:prod": "yarn clean", "start": "yarn build:dev --watch" }, "repository": "https://github.com/LemmyNet/joinlemmy-site", "dependencies": { "@typescript-eslint/parser": "^4.15.1", "chota": "^0.8.0", "express": "~4.17.1", "i18next": "^19.8.9", "inferno": "^7.4.8", "inferno-create-element": "^7.4.8", "inferno-helmet": "^5.2.1", "inferno-hydrate": "^7.4.8", "inferno-router": "^7.4.8", "inferno-server": "^7.4.8" }, "devDependencies": { "@babel/core": "^7.12.17", "@babel/plugin-transform-runtime": "^7.12.17", "@babel/plugin-transform-typescript": "^7.12.17", "@babel/preset-env": "7.13.10", "@babel/preset-typescript": "^7.12.17", "@babel/runtime": "^7.12.18", "@types/express": "^4.17.11", "@types/node": "^14.14.31", "@types/node-fetch": "^2.5.8", "@typescript-eslint/eslint-plugin": "^4.15.1", "babel-loader": "^8.2.2", "babel-plugin-inferno": "^6", "clean-webpack-plugin": "^3.0.0", "copy-webpack-plugin": "^8.0.0", "css-loader": "^5.0.2", "eslint": "^7.20.0", "eslint-plugin-prettier": "^3.3.1", "husky": "^5.1.0", "lint-staged": "^10.5.4", "mini-css-extract-plugin": "^1.3.8", "node-sass": "^5.0.0", "prettier": "^2.2.1", "rimraf": "^3.0.2", "run-node-webpack-plugin": "^1.3.0", "sass-loader": "^11.0.1", "sortpack": "^2.2.0", "style-loader": "^2.0.0", "terser": "^5.6.0", "typescript": "^4.1.5", "webpack": "5.25.0", "webpack-cli": "^4.5.0", "webpack-dev-server": "3.11.2", "webpack-node-externals": "^2.5.2" }, "engines": { "node": ">=8.9.0" }, "engineStrict": true, "lint-staged": { "*.{ts,tsx,js}": [ "prettier --write", "eslint --fix" ], "package.json": [ "sortpack" ] } }