-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
98 lines (98 loc) · 2.82 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
90
91
92
93
94
95
96
97
98
{
"name": "blog",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "npm run build && wrangler pages deploy",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"typegen": "wrangler types",
"preview": "npm run build && wrangler pages dev",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@notionhq/client": "^2.2.15",
"@remix-run/cloudflare": "^2.10.3",
"@remix-run/cloudflare-pages": "^2.10.3",
"@remix-run/react": "^2.10.3",
"autosize": "^6.0.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.10",
"feed": "^4.2.2",
"framer-motion": "12.0.0-alpha.0",
"isbot": "^4.1.0",
"katex": "^0.16.11",
"ky": "^1.3.0",
"lodash.pick": "^4.4.0",
"lodash.throttle": "^4.1.1",
"lqip-modern": "^2.0.0",
"node-polyglot": "^2.5.0",
"notion-utils": "^6.16.0",
"nprogress": "^0.2.0",
"p-map": "^5.5.0",
"p-memoize": "^7.1.1",
"prism-theme-vars": "^0.2.4",
"prismjs": "^1.29.0",
"react": "canary",
"react-cusdis": "^2.1.3",
"react-dom": "canary",
"react-flip-move": "^3.0.5",
"react-icons": "^4.12.0",
"react-notion-x": "^6.16.0",
"react-tweet-embed": "^2.0.0",
"react-use": "^17.5.1",
"remix-themes": "^1.5.0",
"use-ackee": "^3.0.1"
},
"overrides": {
"react": "canary",
"react-dom": "canary",
"tailwindcss": "next",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240806.0",
"@remix-run/dev": "^2.10.3",
"@types/nprogress": "^0.2.3",
"@types/prismjs": "^1.26.4",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-legacy": "^5.4.1",
"autoprefixer": "^10.4.19",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"notion-types": "^6.16.0",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.4",
"tailwindcss": "^3.4.4",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1",
"wrangler": "3.57.1"
},
"engines": {
"node": ">=20.0.0"
},
"prettier": {
"singleQuote": true,
"plugins": [
"prettier-plugin-organize-imports"
]
}
}