forked from ijjk/notion-blog
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "notion-blog",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\" --ignore-path .gitignore",
"lint-staged": "lint-staged",
"lint": "next lint"
},
"pre-commit": "lint-staged",
"dependencies": {
"@mdx-js/loader": "^2.1.1",
"@mdx-js/react": "^2.1.1",
"@next/env": "^12.1.6",
"@next/mdx": "^12.1.6",
"@notionhq/client": "2.1.1",
"async-sema": "3.1.1",
"eslint-config-next": "^12.1.6",
"github-slugger": "1.4.0",
"katex": "0.16.0",
"next": "12",
"next-seo": "^5.4.0",
"prismjs": "1.28.0",
"react": "18",
"react-dom": "18",
"react-feather": "^2.0.9",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/katex": "0.14.0",
"@types/node": "16.11.46",
"@types/react": "18",
"autoprefixer": "^10.4.7",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"lint-staged": "13.0.3",
"postcss": "^8.4.14",
"pre-commit": "1.2.2",
"prettier": "2.7.1",
"tailwindcss": "^3.0.24",
"typescript": "4.7.4"
}
}