-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.38 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
{
"name": "cfmemos",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "A full-stack memo application for Cloudflare Workers",
"scripts": {
"dev": "npm run build:client && wrangler dev",
"dev:client": "vite",
"build:client": "vite build",
"build": "npm run build:client && wrangler deploy --dry-run",
"deploy": "npm run build:client && wrangler deploy",
"preview": "vite preview",
"lint": "eslint src/client",
"tail": "wrangler tail",
"db:create": "wrangler d1 create memos_db",
"db:init": "wrangler d1 execute memos_db --file=./schema.sql --remote",
"db:local": "wrangler d1 execute memos_db --local --file=./schema.sql"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@matejmazur/react-katex": "^3.1.3",
"@mui/joy": "^5.0.0-beta.52",
"@reduxjs/toolkit": "^2.11.2",
"@tanstack/react-query": "^5.90.12",
"axios": "^1.13.2",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"highlight.js": "^11.11.1",
"hono": "^4.10.1",
"i18next": "^25.7.3",
"i18next-browser-languagedetector": "^8.2.0",
"katex": "^0.16.27",
"lodash-es": "^4.17.22",
"lucide-react": "^0.562.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hot-toast": "^2.6.0",
"react-i18next": "^16.5.0",
"react-markdown": "^10.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.11.0",
"react-use": "^17.6.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"textarea-caret": "^3.1.0",
"uuid": "^13.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240117.0",
"@eslint/js": "^9.39.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"less": "^4.2.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^5.9.3",
"vite": "^4.5.0",
"wrangler": "4.95.0"
},
"license": "MIT"
}