-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
89 lines (89 loc) · 2.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"private": true,
"author": "Guanghui Wang",
"scripts": {
"debug": "node --inspect-brk node_modules/.bin/next dev",
"dev": "next dev -p 9000",
"_dev": "next dev -p 9000 -H 192.168.1.6",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"fix": "npx eslint --fix --ext .js,.ts,.tsx .",
"format": "prettier --write \"**/*.+(vue|js|jsx|ts|tsx|json|css|scss|md|html)\"",
"prepare": "husky install",
"commit": "commit",
"test": "jest --watch",
"test:e2e": "playwright test"
},
"dependencies": {
"@emailjs/browser": "^3.4.0",
"@giscus/react": "^1.1.2",
"@lottiefiles/react-lottie-player": "^3.4.2",
"classnames": "^2.3.1",
"focus-trap-react": "^8.9.2",
"framer-motion": "^6.2.8",
"glob": "^7.2.0",
"gloryui-react": "^0.0.7",
"got": "^12.0.2",
"gray-matter": "^4.0.3",
"gsap": "^3.9.1",
"lodash": "^4.17.21",
"lqip-modern": "^1.2.0",
"next": "^12.1.0",
"next-mdx-remote": "^4.0.0",
"next-sitemap": "^2.5.10",
"next-themes": "^0.1.1",
"notion-client": "^4.19.8",
"notion-utils": "^4.19.8",
"p-map": "^5.3.0",
"p-memoize": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.3.1",
"react-notion-x": "^4.19.8",
"react-use": "^17.3.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^1.0.1",
"rehype-prism-plus": "^1.3.2",
"rehype-slug": "^5.0.1",
"rehype-toc": "^3.0.2",
"swiper": "^8.0.7"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@netlify/plugin-nextjs": "^4.3.0",
"@playwright/test": "^1.20.0",
"@svgr/webpack": "^6.2.1",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.180",
"@types/lqip-modern": "^1.1.2",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@types/react-dom": "^17.0.13",
"@types/tailwindcss": "^3.0.9",
"autoprefixer": "^10.4.4",
"eslint": "^8.11.0",
"eslint-config-next": "12.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.6",
"postcss": "^8.4.12",
"prettier": "^2.6.0",
"prettier-plugin-tailwindcss": "^0.1.8",
"prop-types": "^15.8.1",
"tailwindcss": "^3.0.23",
"typescript": "4.6.2"
},
"peerDependencies": {
"prop-types": "^15.8.1"
}
}