forked from stephenou/fruitionsite
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 854 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 854 Bytes
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
{
"name": "worknot",
"version": "1.0.0",
"description": "Host your Notion Site on a custom domain with Cloudflare Workers",
"keywords": [
"react",
"cloudflare",
"notion",
"workers"
],
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.69.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"dev": "wrangler dev",
"deploy": "wrangler deploy"
}
}