Spaces:
Build error
Build error
Create package.json
Browse files- package.json +78 -0
package.json
ADDED
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "notion-next",
|
3 |
+
"version": "4.2.4",
|
4 |
+
"homepage": "https://github.com/tangly1024/NotionNext.git",
|
5 |
+
"license": "MIT",
|
6 |
+
"repository": {
|
7 |
+
"type": "git",
|
8 |
+
"url": "https://github.com/tangly1024/NotionNext.git"
|
9 |
+
},
|
10 |
+
"author": {
|
11 |
+
"name": "tangly",
|
12 |
+
"email": "[email protected]",
|
13 |
+
"url": "http://tangly1024.com"
|
14 |
+
},
|
15 |
+
"scripts": {
|
16 |
+
"dev": "next dev",
|
17 |
+
"build": "next build",
|
18 |
+
"start": "next start",
|
19 |
+
"post-build": "next-sitemap --config next-sitemap.config.js",
|
20 |
+
"export": "next build && next-sitemap --config next-sitemap.config.js && next export",
|
21 |
+
"bundle-report": "ANALYZE=true yarn build"
|
22 |
+
},
|
23 |
+
"dependencies": {
|
24 |
+
"@giscus/react": "^2.2.6",
|
25 |
+
"@headlessui/react": "^1.7.15",
|
26 |
+
"@next/bundle-analyzer": "^12.1.1",
|
27 |
+
"@vercel/analytics": "^1.0.0",
|
28 |
+
"algoliasearch": "^4.18.0",
|
29 |
+
"animejs": "^3.2.1",
|
30 |
+
"aos": "^3.0.0-beta.6",
|
31 |
+
"axios": ">=0.21.1",
|
32 |
+
"copy-to-clipboard": "^3.3.1",
|
33 |
+
"feed": "^4.2.2",
|
34 |
+
"js-md5": "^0.7.3",
|
35 |
+
"localStorage": "^1.0.4",
|
36 |
+
"lodash.throttle": "^4.1.1",
|
37 |
+
"memory-cache": "^0.2.0",
|
38 |
+
"mongodb": "^4.6.0",
|
39 |
+
"next": "13.3.1",
|
40 |
+
"notion-client": "6.15.6",
|
41 |
+
"notion-utils": "6.15.6",
|
42 |
+
"nprogress": "^0.2.0",
|
43 |
+
"preact": "^10.5.15",
|
44 |
+
"prism-themes": "1.9.0",
|
45 |
+
"react": "^18.2.0",
|
46 |
+
"react-cookies": "^0.1.1",
|
47 |
+
"react-dom": "^18.2.0",
|
48 |
+
"react-facebook": "^8.1.4",
|
49 |
+
"react-notion-x": "6.16.0",
|
50 |
+
"react-share": "^4.4.1",
|
51 |
+
"react-tweet-embed": "~2.0.0",
|
52 |
+
"typed.js": "^2.0.12"
|
53 |
+
},
|
54 |
+
"devDependencies": {
|
55 |
+
"@waline/client": "^2.5.1",
|
56 |
+
"autoprefixer": "^10.4.13",
|
57 |
+
"eslint": "^7.26.0",
|
58 |
+
"eslint-config-next": "^13.1.1",
|
59 |
+
"eslint-config-standard": "^16.0.2",
|
60 |
+
"eslint-plugin-import": "^2.23.0",
|
61 |
+
"eslint-plugin-node": "^11.1.0",
|
62 |
+
"eslint-plugin-promise": "^5.1.0",
|
63 |
+
"eslint-plugin-react": "^7.23.2",
|
64 |
+
"eslint-plugin-react-hooks": "^4.6.0",
|
65 |
+
"next-sitemap": "^1.6.203",
|
66 |
+
"postcss": "^8.4.31",
|
67 |
+
"prettier": "3.2.5",
|
68 |
+
"tailwindcss": "^3.3.2",
|
69 |
+
"webpack-bundle-analyzer": "^4.5.0"
|
70 |
+
},
|
71 |
+
"resolutions": {
|
72 |
+
"axios": ">=0.21.1"
|
73 |
+
},
|
74 |
+
"bugs": {
|
75 |
+
"url": "https://github.com/tangly/NotionNext/issues",
|
76 |
+
"email": "[email protected]"
|
77 |
+
}
|
78 |
+
}
|