forked from longern/FlareDrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.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
{
"name": "flare-drive",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.0.1",
"@mui/material": "^9.0.1",
"@univerjs/core": "^0.23.0",
"@univerjs/preset-sheets-core": "^0.23.0",
"@univerjs/presets": "^0.23.0",
"docx-preview": "^0.3.7",
"fflate": "^0.8.3",
"p-limit": "^7.3.0",
"pdfjs-dist": "^5.7.284",
"pptx-preview": "1.0.7",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"viewerjs": "^1.11.7",
"web-vitals": "^5.2.0",
"xlsx": "^0.18.5"
},
"scripts": {
"start": "npm run dev",
"dev": "concurrently -k -n frontend,functions -c cyan,green \"npm:dev:frontend\" \"npm:dev:functions\"",
"dev:frontend": "vite --host 127.0.0.1 --port 3601 --strictPort",
"dev:functions": "wrangler pages dev public --port 3602 --compatibility-date=2026-05-20 --env-file .dev.vars --r2=BUCKET --d1=AUTH_DB",
"build": "tsc --noEmit && vite build",
"lint": "eslint src functions vite.config.ts eslint.config.mjs",
"preview": "vite preview --host 127.0.0.1 --port 3600"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260520.1",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"concurrently": "^9.2.1",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.13",
"wrangler": "^4.93.0"
}
}