-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Change monorepo to monolithic
- Add type module - Change yarn to pnpm
- Loading branch information
Showing
153 changed files
with
4,506 additions
and
4,613 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn lint | ||
pnpm lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
extends: 'stylelint-config-standard-scss', | ||
rules: { | ||
'at-rule-no-unknown': null, | ||
'color-function-notation': null, | ||
'scss/at-rule-no-unknown': [ | ||
true, | ||
{ | ||
ignoreAtRules: ['tailwind'], | ||
}, | ||
], | ||
}, | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,64 @@ | ||
{ | ||
"name": "1ilsang.dev", | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"private": true, | ||
"version": "0.0.0", | ||
"author": "1ilsang <[email protected]>", | ||
"description": "https://1ilsang.dev", | ||
"license": "MIT", | ||
"workspaces": [ | ||
"apps/*", | ||
"packages/**/*" | ||
], | ||
"type": "module", | ||
"scripts": { | ||
"blog": "yarn workspace blog", | ||
"clean": "turbo run clean && rm -rf node_modules", | ||
"lint": "turbo run lint", | ||
"dev": "turbo run dev", | ||
"deploy-blog": "turbo run deploy --filter=blog", | ||
"prepare": "husky install" | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"export": "next export", | ||
"deploy-blog": "next build && next export", | ||
"lint:stylelint": "stylelint --config './.stylelintrc.cjs' './src/**/*.scss'", | ||
"lint:prettier": "prettier --list-different './{src,_data}/**/*.{json,html,yml,tsx,ts,js,jsx,scss}'", | ||
"lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx './src/**/*.{js,jsx,ts,tsx}'", | ||
"lint:markdown": "markdownlint --config './.markdownlint.cjs' './_posts/*.{md,mdx}'", | ||
"lint:typeCheck": "tsc --pretty", | ||
"lint": "FORCE_COLOR=1 npm-run-all -p --print-label 'lint:**'", | ||
"clean": "rm -rf .next out node_modules", | ||
"prepare": "husky install", | ||
"preinstall": "npx only-allow pnpm" | ||
}, | ||
"dependencies": { | ||
"classnames": "^2.3.2", | ||
"gray-matter": "4.0.3", | ||
"next": "13.4.19", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"rehype-autolink-headings": "^6.1.1", | ||
"rehype-highlight": "^6.0.0", | ||
"rehype-slug": "^5.1.0", | ||
"rehype-stringify": "^9.0.3", | ||
"remark-html": "15.0.2", | ||
"remark-parse": "^10.0.1", | ||
"remark-rehype": "^10.1.0", | ||
"sass": "1.66.1", | ||
"unified": "^10.1.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "18.17.13", | ||
"@types/react": "18.2.21", | ||
"@types/react-dom": "18.2.7", | ||
"@typescript-eslint/eslint-plugin": "^6.0.0", | ||
"autoprefixer": "10.4.15", | ||
"eslint": "^8.15.0", | ||
"eslint-config-next": "^13.0.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-react": "^7.29.4", | ||
"husky": "8.0.3", | ||
"markdownlint": "0.30.0", | ||
"markdownlint-cli": "0.35.0", | ||
"npm-run-all": "^4.1.5", | ||
"postcss": "^8.4.33", | ||
"prettier": "^3.0.0", | ||
"typescript": "5.2.2", | ||
"turbo": "^1.10.13" | ||
"stylelint": "^16.1.0", | ||
"stylelint-config-standard-scss": "^13.0.0", | ||
"tailwindcss": "3.3.3", | ||
"typescript": "5.2.2" | ||
} | ||
} |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.