-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 728 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 728 Bytes
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
{
"name": "my-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"graphql": "^16.5.0",
"highlight.js": "^11.9.0",
"katex": "^0.16.9",
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"remark-emoji": "^4.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"sass": "^1.54.0",
"unified": "^11.0.4"
},
"devDependencies": {
"depcheck": "^1.4.7",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3"
}
}