This repository has been archived by the owner on Mar 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
56 lines (56 loc) · 1.57 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
56
{
"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": "^2.2.2",
"@vercel/og": "^0.0.21",
"axios": "^1.2.1",
"got": "^12.5.3",
"mermaid": "^9.3.0",
"metascraper": "^5.32.3",
"metascraper-description": "^5.32.3",
"metascraper-image": "^5.32.3",
"metascraper-title": "^5.32.3",
"next": "^13.2.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-katex": "^3.0.1",
"react-share": "^4.4.1",
"react-twitter-embed": "^4.0.4",
"react-youtube": "^10.1.0",
"shell-quote": "^1.7.4",
"swr": "^2.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.17",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"eslint": "8.30.0",
"eslint-config-next": "^13.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "^13.1.0",
"node-mocks-http": "^1.12.1",
"prettier": "^2.8.1",
"typescript": "^4.8.4"
}
}