mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
Upgrading deps. (#205)
This commit is contained in:
parent
24e59a039a
commit
7df77b14c3
4 changed files with 2005 additions and 1653 deletions
|
@ -1,2 +1,3 @@
|
|||
.git
|
||||
node_modules
|
||||
dist
|
||||
|
|
|
@ -47,8 +47,8 @@ COPY src src
|
|||
COPY --from=docs /app/docs ./src/assets/docs
|
||||
COPY --from=api /app/lemmy-js-client/docs ./src/assets/api
|
||||
|
||||
RUN yarn
|
||||
RUN NODE_OPTIONS="--max-old-space-size=8192" yarn build:prod
|
||||
RUN yarn install --pure-lockfile
|
||||
RUN yarn build:prod
|
||||
|
||||
FROM node:alpine as runner
|
||||
COPY --from=builder /app/dist /app/dist
|
||||
|
|
81
package.json
81
package.json
|
@ -16,54 +16,55 @@
|
|||
},
|
||||
"repository": "https://github.com/LemmyNet/joinlemmy-site",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/parser": "^5.13.0",
|
||||
"chota": "^0.8.0",
|
||||
"express": "~4.17.3",
|
||||
"i18next": "^21.6.12",
|
||||
"inferno": "^7.4.11",
|
||||
"inferno-create-element": "^7.4.11",
|
||||
"@typescript-eslint/parser": "^5.60.1",
|
||||
"chota": "^0.9.2",
|
||||
"express": "~4.18.2",
|
||||
"i18next": "^23.2.6",
|
||||
"inferno": "^8.2.1",
|
||||
"inferno-create-element": "^8.2.1",
|
||||
"inferno-helmet": "^5.2.1",
|
||||
"inferno-hydrate": "^7.4.11",
|
||||
"inferno-hydrate": "^8.2.1",
|
||||
"inferno-i18next": "github:nimbusec-oss/inferno-i18next#semver:^7.4.2",
|
||||
"inferno-router": "^7.4.11",
|
||||
"inferno-server": "^7.4.11",
|
||||
"markdown-it": "^12.3.2",
|
||||
"node-fetch": "^3.2.1"
|
||||
"inferno-router": "^8.2.1",
|
||||
"inferno-server": "^8.2.1",
|
||||
"markdown-it": "^13.0.1",
|
||||
"node-fetch": "^3.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.17.5",
|
||||
"@babel/plugin-transform-runtime": "^7.16.10",
|
||||
"@babel/plugin-transform-typescript": "^7.16.8",
|
||||
"@babel/preset-env": "7.16.11",
|
||||
"@babel/preset-typescript": "^7.16.7",
|
||||
"@babel/runtime": "^7.16.7",
|
||||
"@types/express": "^4.17.13",
|
||||
"@types/node": "^17.0.21",
|
||||
"@types/node-fetch": "^2.6.1",
|
||||
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
||||
"babel-loader": "^8.2.3",
|
||||
"babel-plugin-inferno": "^6.3.0",
|
||||
"@babel/core": "^7.22.5",
|
||||
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
||||
"@babel/plugin-transform-runtime": "^7.22.5",
|
||||
"@babel/plugin-transform-typescript": "^7.22.5",
|
||||
"@babel/preset-env": "7.22.5",
|
||||
"@babel/preset-typescript": "^7.22.5",
|
||||
"@babel/runtime": "^7.22.5",
|
||||
"@types/express": "^4.17.17",
|
||||
"@types/node": "^20.3.2",
|
||||
"@types/node-fetch": "^2.6.4",
|
||||
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
||||
"babel-loader": "^9.1.2",
|
||||
"babel-plugin-inferno": "^6.6.0",
|
||||
"clean-webpack-plugin": "^4.0.0",
|
||||
"copy-webpack-plugin": "^10.2.2",
|
||||
"copy-webpack-plugin": "^11.0.0",
|
||||
"countries-list": "^2.6.1",
|
||||
"css-loader": "^6.5.1",
|
||||
"eslint": "^8.10.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"husky": "^7.0.4",
|
||||
"lint-staged": "^12.3.2",
|
||||
"mini-css-extract-plugin": "^2.5.3",
|
||||
"css-loader": "^6.8.1",
|
||||
"eslint": "^8.43.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"husky": "^8.0.3",
|
||||
"lint-staged": "^13.2.3",
|
||||
"mini-css-extract-plugin": "^2.7.6",
|
||||
"prettier": "^2.8.8",
|
||||
"rimraf": "^3.0.2",
|
||||
"rimraf": "^5.0.1",
|
||||
"run-node-webpack-plugin": "^1.3.0",
|
||||
"sass": "^1.49.9",
|
||||
"sass-loader": "^12.6.0",
|
||||
"sortpack": "^2.2.0",
|
||||
"style-loader": "^3.3.1",
|
||||
"terser": "^5.12.0",
|
||||
"typescript": "^4.6.2",
|
||||
"webpack": "5.69.1",
|
||||
"webpack-cli": "^4.9.2",
|
||||
"webpack-dev-server": "4.7.4",
|
||||
"sass": "^1.63.6",
|
||||
"sass-loader": "^13.3.2",
|
||||
"sortpack": "^2.3.4",
|
||||
"style-loader": "^3.3.3",
|
||||
"terser": "^5.18.2",
|
||||
"typescript": "^5.1.6",
|
||||
"webpack": "5.88.1",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-dev-server": "4.15.1",
|
||||
"webpack-node-externals": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
|
|
Loading…
Reference in a new issue