forked from otoyo/easy-notion-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
50
51
52
53
54
55
{
"name": "easy-notion-blog",
"license": "MIT",
"version": "0.1.1",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "node scripts/set-blog-index-cache.js && next build && node scripts/expire-blog-index-cache.js",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\" --ignore-path .gitignore",
"lint": "next lint",
"test": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@notionhq/client": "^1.0.4",
"axios": "^0.27.2",
"got": "^12.3.1",
"image-size": "^1.0.1",
"mermaid": "^9.1.2",
"metascraper": "^5.30.2",
"metascraper-description": "^5.30.2",
"metascraper-image": "^5.30.2",
"metascraper-title": "^5.30.2",
"next": "12",
"prismjs": "^1.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-katex": "^2.0.2",
"react-share": "^4.4.0",
"react-twitter-embed": "^4.0.4",
"react-youtube": "^9.0.2",
"shell-quote": "^1.7.3",
"swr": "^1.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.5",
"@types/node": "^17.0.35",
"@types/prismjs": "^1.26.0",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"eslint": "8.16.0",
"eslint-config-next": "^12.1.6",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.4.2",
"node-mocks-http": "^1.11.0",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
}
}