Skip to content

Commit

Permalink
dependency bump. scripts refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
gregrickaby committed Feb 1, 2024
1 parent 29fa74d commit 590dbae
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 44 deletions.
66 changes: 36 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 13 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,41 +15,40 @@
"homepage": "https://github.com/gregrickaby/viewer-for-reddit#readme",
"scripts": {
"build": "next build",
"clean": "rimraf .next",
"dev": "npm run clean && next dev",
"format": "npx prettier '**/*.{js,jsx,ts,tsx,md,mdx,html,css,scss,json,yml}' --write || true",
"lint": "npm run format && npm run lint:js && npm run type-check",
"lint:js": "npx eslint '**/*.{js,ts,jsx,tsx}' --fix || true && next lint",
"dev": "rimraf .next && next dev",
"format": "prettier . --ignore-path .gitignore --write",
"lint": "npm run lint:css && npm run lint:js && npm run lint:markdown && next lint && tsc",
"lint:css": "stylelint '**/*.css' --ignore-path .gitignore --fix",
"lint:js": "eslint . --ignore-path .gitignore --fix",
"postbuild": "next-sitemap",
"start": "next start",
"type-check": "tsc"
"start": "next start"
},
"dependencies": {
"@mantine/core": "7.5.0",
"@mantine/hooks": "7.5.0",
"@mantine/core": "7.5.1",
"@mantine/hooks": "7.5.1",
"@tabler/icons-react": "^2.46.0",
"hls.js": "^1.5.3",
"next": "14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.5.3",
"react-intersection-observer": "^9.6.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.6.1",
"@types/node": "20.11.13",
"@types/react": "18.2.48",
"@types/node": "20.11.15",
"@types/react": "18.2.51",
"@types/react-dom": "18.2.18",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.33",
"postcss-preset-mantine": "1.12.3",
"postcss-preset-mantine": "1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"stylelint": "^16.2.0",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.3.3"
}
Expand Down

0 comments on commit 590dbae

Please sign in to comment.