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
72 lines (72 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.17 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
{
"name": "flare-drive",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.13.0"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.2.0",
"@mui/material": "^9.2.0",
"@univerjs/core": "^0.25.1",
"@univerjs/preset-sheets-core": "^0.25.1",
"@univerjs/presets": "^0.25.1",
"docx-preview": "^0.4.0",
"fflate": "^0.8.3",
"p-limit": "^7.3.0",
"pdfjs-dist": "^6.1.200",
"pptx-preview": "1.0.7",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"viewerjs": "^1.11.8",
"web-vitals": "^5.3.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": "^5.20260718.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": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"prettier": "^3.9.5",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"wrangler": "^4.112.0"
}
}