mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
d17c4d7d2f
* Starting on new tailwind based joinlemmy-site. * Formatting fix. * Adding follow communities block. * Adding a few more blocks. * Finishing up blocks. * Adding a few more pages. * Adding apps page. * Almost done with donation page. * Adding most of instances page. * Trying to fix CI 1. * Adding navbar and footer. * Adding bottom spacer. * Finishing up more info modal. * Adding icons to main page. * Eruda only in development mode. * Finishing up main page, starting to work on recs. * Adding main images. * Adding images 2. * Starting to add filters. * Finishing up helper modal. * Adding topic icons. * Adding more instances. * Fixing recommended. * Forgot to add instance picker. * Adding world background image. * Adding alexandrite. * Adding funding goal block. * Fix dockerfile. * Upgrading deps. * Fixing package json. * Updating coders, sponsors. * Fixing mobile margins. * Fixing navbar auto-close when clicked. * Removing todo. * Removing some useless instance helper links. * Fixing news titling. * Addressing PR comments. * Updating instance stats. * Fixing class -> className * Fixing sm:max directives. * Make instance images links to their sites. * Use ubuntu font. * Addressing PR comments. * Adding a few more android apps. * Adding thunder and combustible apps. * Fixing z index. * Add a warning alert for closed source apps. * Adding MLMYM app. Fixes #213 * Fixing i18n key. * Adding QR codes for cryptos. Fixes #219 * Addressing PR comments. * Fixing news preview. * Adding registration mode to details modal. Fixes #153 * Filter out bot instances. * Using glide carousel. * Adding glide min css. * Adding donation platform fetching. Fixes #248 * Prettying glide css. * Change dev goal to 3 * Adding sign up button. * Minifying docker image. * Removing sortpack.
87 lines
2.9 KiB
JSON
87 lines
2.9 KiB
JSON
{
|
|
"name": "joinlemmy-site",
|
|
"description": "A site for join-lemmy",
|
|
"author": "Dessalines <tyhou13@gmx.com>",
|
|
"license": "AGPL-3.0",
|
|
"scripts": {
|
|
"build:dev": "webpack --mode=development",
|
|
"build:prod": "webpack --mode=production",
|
|
"clean": "yarn run rimraf dist",
|
|
"crawl": "node crawl.mjs",
|
|
"update-donations": "node update_donations.mjs",
|
|
"lint": "node generate_translations.mjs && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check \"src/**/*.{ts,tsx,js,css,scss}\"",
|
|
"prebuild:dev": "yarn clean && node generate_translations.mjs && yarn tailwind",
|
|
"prebuild:prod": "yarn clean && node generate_translations.mjs && yarn tailwind",
|
|
"tailwind": "tailwindcss -i ./src/style.css -o ./dist/styles/styles.css --minify",
|
|
"prepare": "husky install",
|
|
"start": "yarn build:dev --watch & yarn tailwind --watch"
|
|
},
|
|
"repository": "https://github.com/LemmyNet/joinlemmy-site",
|
|
"dependencies": {
|
|
"@glidejs/glide": "3.5.2",
|
|
"classnames": "^2.3.2",
|
|
"express": "~4.18.2",
|
|
"i18next": "^23.5.1",
|
|
"inferno": "^8.2.2",
|
|
"inferno-create-element": "^8.2.2",
|
|
"inferno-helmet": "^5.2.1",
|
|
"inferno-hydrate": "^8.2.2",
|
|
"inferno-i18next": "github:nimbusec-oss/inferno-i18next#semver:^7.4.2",
|
|
"inferno-router": "^8.2.2",
|
|
"tailwindcss": "^3.3.3",
|
|
"inferno-server": "^8.2.2",
|
|
"webpack": "5.88.2",
|
|
"daisyui": "^3.9.2",
|
|
"@babel/runtime": "^7.23.2",
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"run-node-webpack-plugin": "^1.3.0",
|
|
"@tailwindcss/typography": "^0.5.10",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/plugin-transform-runtime": "^7.23.2",
|
|
"@babel/plugin-transform-typescript": "^7.22.15",
|
|
"markdown-it": "^13.0.2",
|
|
"babel-loader": "^9.1.3",
|
|
"@babel/preset-env": "7.23.2",
|
|
"@babel/preset-typescript": "^7.23.2",
|
|
"babel-plugin-inferno": "^6.7.0",
|
|
"@babel/core": "^7.23.2",
|
|
"webpack-node-externals": "^3.0.0",
|
|
"countries-list": "^2.6.1",
|
|
"node-fetch": "^3.3.2",
|
|
"webpack-cli": "^5.1.4",
|
|
"qrcode": "^1.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "^6.7.5",
|
|
"@types/express": "^4.17.19",
|
|
"@types/glidejs__glide": "^3.6.3",
|
|
"@types/node": "^20.8.4",
|
|
"@types/node-fetch": "^2.6.6",
|
|
"@types/qrcode": "^1.5.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.5",
|
|
"css-loader": "^6.8.1",
|
|
"eslint": "^8.51.0",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^14.0.1",
|
|
"prettier": "^3.0.3",
|
|
"rimraf": "^5.0.5",
|
|
"sass": "^1.69.3",
|
|
"sass-loader": "^13.3.2",
|
|
"style-loader": "^3.3.3",
|
|
"terser": "^5.21.0",
|
|
"typescript": "^5.2.2",
|
|
"webpack-dev-server": "4.15.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.9.0"
|
|
},
|
|
"engineStrict": true,
|
|
"lint-staged": {
|
|
"*.{ts,tsx,js}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|