-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "onlyoffice-web-comp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --port 3001",
"dev:cdn": "node scripts/static-server.mjs public/packages --port 3010",
"build": "next build --turbopack",
"start": "next dev --turbopack",
"test:e2e:files": "node tests/e2e/scripts/generate-office-files.mjs",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:install": "playwright install chromium"
},
"dependencies": {
"ahooks": "^3.9.5",
"exceljs": "^4.4.0",
"github-slugger": "^2.0.0",
"lodash-es": "^4.17.21",
"mammoth": "^1.11.0",
"nanoid": "^5.1.6",
"next": "15.5.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "latest",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"playwright": "^1.61.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}