forked from notionnext-org/NotionNext
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 5.12 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 5.12 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "notion-next",
"version": "4.9.5.3",
"packageManager": "yarn@1.22.22",
"homepage": "https://github.com/tangly1024/NotionNext.git",
"license": "MIT",
"engines": {
"node": ">=20 <25"
},
"repository": {
"type": "git",
"url": "https://github.com/tangly1024/NotionNext.git"
},
"author": {
"name": "tangly",
"email": "mail@tangly1024.com",
"url": "http://tangly1024.com"
},
"scripts": {
"dev": "next dev",
"build": "cross-env BUILD_MODE=true next build",
"start": "next start",
"export": "cross-env BUILD_MODE=true EXPORT=true next build",
"bundle-report": "cross-env ANALYZE=true next build",
"build-all-in-dev": "cross-env VERCEL_ENV=production next build",
"version": "echo $npm_package_version",
"bump-patch-version": "node scripts/bump-package-patch-version.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"quality": "node scripts/quality-check.js",
"pre-commit": "yarn lint:fix && yarn format && yarn type-check",
"dev-tools": "node scripts/dev-tools.js",
"init-dev": "node scripts/dev-tools.js init",
"deps:install": "yarn install --frozen-lockfile",
"deps:check-lockfile": "yarn install --frozen-lockfile && git diff --exit-code yarn.lock",
"clean": "node scripts/dev-tools.js clean",
"docs": "node scripts/dev-tools.js docs",
"docs:site:dev": "vitepress dev",
"docs:site:build": "vitepress build",
"docs:site:preview": "vitepress preview",
"check-updates": "node scripts/dev-tools.js check-updates",
"setup-hooks": "node scripts/setup-git-hooks.js install",
"remove-hooks": "node scripts/setup-git-hooks.js remove",
"check-hooks": "node scripts/setup-git-hooks.js check",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"health-check": "node scripts/health-check.js",
"validate": "yarn health-check",
"final-validation": "node scripts/final-validation.js",
"perf:baseline": "node scripts/perf-baseline.js",
"perf:compare": "node scripts/perf-baseline.js --mode=compare",
"perf:lighthouse": "lhci autorun",
"perf:audit:themes": "node scripts/audit-theme-performance.js",
"perf:compress-theme-previews": "node scripts/compress-theme-previews.js",
"translate": "node scripts/translate/index.js",
"translate:all": "node scripts/translate/index.js --batch",
"translate:check": "node scripts/translate/index.js --check-drift",
"translate:backfill": "node scripts/translate/index.js --backfill",
"translate:diagnose": "node scripts/translate/index.js --diagnose",
"postinstall": "patch-package"
},
"dependencies": {
"@babel/runtime": "^7.23.0",
"@clerk/localizations": "^3.17.1",
"@clerk/nextjs": "^5.7.6",
"@headlessui/react": "^1.7.19",
"@next/bundle-analyzer": "^12.3.7",
"@supabase/supabase-js": "^2.57.4",
"@tabler/icons-react": "^3.36.1",
"@vercel/analytics": "^1.6.1",
"@vercel/functions": "^3.4.3",
"algoliasearch": "^4.25.2",
"axios": "^1.16.1",
"critters": "^0.0.23",
"feed": "^4.2.2",
"fflate": "^0.8.2",
"ioredis": "^5.6.1",
"js-md5": "^0.8.3",
"js-sha256": "^0.11.1",
"memory-cache": "^0.2.0",
"next": "^14.2.35",
"notion-client": "7.10.0",
"notion-utils": "7.10.0",
"p-limit": "^7.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-facebook": "^8.1.4",
"react-hotkeys-hook": "^4.6.2",
"react-notion-x": "7.10.0",
"react-share": "^5.2.2",
"react-tweet-embed": "~2.0.0",
"zstd-codec": "^0.1.5",
"remixicon-react": "^1.0.0"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@netlify/plugin-nextjs": "^5.15.8",
"@notionhq/client": "^2.2.15",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/node": "22.15.3",
"@types/react": "18.3.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@waline/client": "^3.6.0",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^13.5.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"next-sitemap": "^1.9.12",
"patch-package": "^8.0.1",
"postcss": "^8.5.10",
"prettier": "^3.6.2",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"typescript": "5.6.2",
"vitepress": "^1.6.3",
"webpack-bundle-analyzer": "^4.5.0"
},
"resolutions": {
"axios": ">=0.21.1",
"form-data": "^4.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@babel/runtime": "^7.23.0"
},
"bugs": {
"url": "https://github.com/tangly/NotionNext/issues",
"email": "tlyong1992@hotmail.com"
}
}