This repository was archived by the owner on Dec 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "mu-next",
"browserslist": [
"defaults",
"not ie 11",
"not ie_mob 11",
"not op_mini all"
],
"scripts": {
"build": "next build",
"dev": "next dev",
"format:check": "npm run prettier -- --list-different",
"format:fix": "npm run prettier -- --write",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --ignore-path .gitignore",
"prettier": "prettier \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|css|html|md|mdx|graphql)\" --ignore-path .gitignore",
"start": "next start",
"types:check": "tsc",
"validate": "npm run format:check && npm run lint && npm run types:check"
},
"dependencies": {
"@mapbox/rehype-prism": "^0.6.0",
"@notionhq/client": "^2.2.2",
"babel-plugin-prismjs": "^2.1.0",
"date-fns": "^2.22.1",
"gray-matter": "^4.0.3",
"mdx-prism": "^0.3.1",
"next": "^13.0.6",
"next-mdx-remote": "^4.2.0",
"next-seo": "^4.25.1",
"plaiceholder": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.3.1",
"react-tweet-embed": "^1.2.2",
"remark-autolink-headings": "^6.0.1",
"remark-code-titles": "^0.1.2",
"remark-slug": "^6.0.0",
"rss": "^1.2.2",
"sharp": "^0.31.2",
"timeago.js": "^4.0.2",
"what-input": "^5.2.10"
},
"devDependencies": {
"@tailwindcss/typography": "^0.4.1",
"@types/node": "^18.11.11",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.3.1",
"rehype": "^11.0.0",
"stylelint-config-recommended": "^5.0.0",
"tailwindcss": "^2.1.4",
"typescript": "^4.3.2"
}
}