-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 KB
/
package.json
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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export"
},
"dependencies": {
"@mdx-js/loader": "^2.1.2",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^12.0.8",
"@types/js-yaml": "^4.0.5",
"@types/mdx-js__react": "^1.5.5",
"dotenv": "^14.2.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"module-alias": "^2.2.2",
"next": "latest",
"next-mdx-remote": "^4.1.0",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rehype-prism-plus": "^1.5.0",
"remark-gfm": "^3.0.1",
"sharp": "^0.30.0"
},
"devDependencies": {
"@babel/core": "latest",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"autoprefixer": "^10.4.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7",
"typescript": "4.5.4"
},
"_moduleAliases": {
"@components": "./components/"
}
}