2022-11-04 21:44:29 +09:00
|
|
|
{
|
|
|
|
"name": "supMDX",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "next dev",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
2022-11-04 22:05:14 +09:00
|
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.mdx ."
|
2022-11-04 21:44:29 +09:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": [
|
|
|
|
"next/core-web-vitals",
|
|
|
|
"@sup39/typescript"
|
|
|
|
],
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"*.ts",
|
|
|
|
"*.tsx"
|
|
|
|
],
|
|
|
|
"rules": {
|
2023-02-16 09:54:31 +09:00
|
|
|
"no-undef": "off",
|
|
|
|
"@next/next/no-img-element": "off"
|
2022-11-04 21:44:29 +09:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"*.mdx"
|
|
|
|
],
|
|
|
|
"extends": [
|
|
|
|
"plugin:mdx/recommended"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"no-trailing-spaces": "off",
|
|
|
|
"indent": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"eslintIgnore": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2023-02-16 09:54:31 +09:00
|
|
|
"@mdx-js/loader": "^2.3.0",
|
|
|
|
"@mdx-js/react": "^2.3.0",
|
2023-03-21 15:08:50 +09:00
|
|
|
"@next/mdx": "~13.0.7",
|
2023-02-17 04:47:29 +09:00
|
|
|
"@sup39/mdx-components": "^0.1.0",
|
2023-03-21 23:27:50 +09:00
|
|
|
"@sup39/mdx-page": "^0.3.1",
|
2023-02-16 23:55:50 +09:00
|
|
|
"@sup39/rehype-mdx-auto-import": "^1.0.0",
|
2022-11-04 21:44:29 +09:00
|
|
|
"@sup39/rehype-mdx-component-wrapper": "^0.1.0",
|
|
|
|
"@sup39/rehype-mdx-export-headings": "^0.1.1",
|
2023-03-21 15:08:50 +09:00
|
|
|
"next": "^13.2.4",
|
2022-11-04 21:44:29 +09:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2022-11-05 21:56:31 +09:00
|
|
|
"rehype-katex": "^6.0.2",
|
2022-11-04 21:44:29 +09:00
|
|
|
"remark-frontmatter": "^4.0.1",
|
2022-11-05 21:56:31 +09:00
|
|
|
"remark-gfm": "^3.0.1",
|
|
|
|
"remark-math": "^5.1.1",
|
2022-11-04 21:44:29 +09:00
|
|
|
"remark-mdx-frontmatter": "^2.1.1",
|
|
|
|
"sass": "^1.56.0",
|
|
|
|
"yaml-loader": "^0.8.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-17 04:47:29 +09:00
|
|
|
"@sup39/eslint-config-typescript": "^0.1.5",
|
|
|
|
"@types/node": "^18.13.0",
|
|
|
|
"@types/react": "^18.0.28",
|
|
|
|
"eslint": "^8.34.0",
|
|
|
|
"eslint-config-next": "^13.1.6",
|
2022-11-04 21:44:29 +09:00
|
|
|
"eslint-plugin-mdx": "^2.0.5",
|
2023-02-17 04:47:29 +09:00
|
|
|
"typescript": "^4.9.5"
|
2022-11-04 21:44:29 +09:00
|
|
|
}
|
|
|
|
}
|