forked from transitive-bullshit/nextjs-notion-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 3 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
{
"name": "nline-blog",
"version": "1.0.0",
"private": true,
"description": "nLine's Notion powered blog",
"author": "nLine <[email protected]>, Travis Fischer <[email protected]>",
"repository": "nline/nline-blog",
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "vercel deploy",
"deps:update": "[ -z $GITHUB_ACTIONS ] && bun update notion-client notion-types notion-utils react-notion-x || echo 'Skipping deps:update on CI'",
"deps:link": "[ -z $GITHUB_ACTIONS ] && run-s deps:link:* || echo 'Skipping deps:update on CI'",
"deps:unlink": "[ -z $GITHUB_ACTIONS ] && bun add notion-client notion-types notion-utils react-notion-x || echo 'Skipping deps:update on CI'",
"deps:link:notion-types": "bun link ../react-notion-x/packages/notion-types",
"deps:link:notion-utils": "bun link ../react-notion-x/packages/notion-utils",
"deps:link:notion-client": "bun link ../react-notion-x/packages/notion-client",
"deps:link:react-notion-x": "bun link ../react-notion-x/packages/react-notion-x",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"test": "run-p test:*",
"test:lint": "eslint .",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check",
"preinstall": "npx only-allow bun"
},
"dependencies": {
"@fisch0920/use-dark-mode": "^2.4.0",
"@keyvhq/core": "^2.1.1",
"@keyvhq/redis": "^2.1.5",
"@vercel/analytics": "^1.4.1",
"@vercel/og": "^0.6.4",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"eslint-config-next": "15.0.3",
"expiry-map": "^2.0.0",
"fathom-client": "^3.7.2",
"got": "^14.4.5",
"isomorphic-unfetch": "^4.0.2",
"ky": "^1.7.2",
"lqip-modern": "^2.2.1",
"next": "15.0.3",
"notion-client": "^7.1.5",
"notion-types": "^7.1.5",
"notion-utils": "^7.1.5",
"p-map": "^7.0.2",
"p-memoize": "^7.1.1",
"posthog-js": "^1.188.0",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-body-classname": "^1.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-notion-x": "^7.2.5",
"react-tweet-embed": "^2.0.0",
"react-use": "^17.5.1",
"rss": "^1.2.2",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@next/bundle-analyzer": "15.0.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/got": "^9.6.12",
"@types/node": "^22.9.3",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.7.2"
}
}