forked from dell-mic/file-glance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "file-glance",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "curl --retry 5 --retry-delay 1 --retry-connrefused --silent --output /dev/null http://localhost:3000 & next dev",
"dev:https": "next dev --experimental-https",
"build": "next build",
"buildAndStart": "next build && serve out",
"check": "npm run format && npm run typeCheck && npm run lint && bun test test/unit && npm run test:e2e:quick",
"lint": "eslint src",
"typeCheck": "tsc --noEmit ",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test:unit": "bun test test/unit",
"test:e2e": "npx playwright install && npx playwright test",
"test:e2e:quick": "npx playwright test --project=chromium",
"test:e2e:updateSnapshots": "npx playwright test --update-snapshots"
},
"dependencies": {
"@heroicons/react": "2.2.0",
"@monaco-editor/react": "4.7.0",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-radio-group": "1.3.8",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-toast": "1.2.15",
"@radix-ui/react-toggle": "1.1.10",
"@radix-ui/react-toggle-group": "1.1.11",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"csv-parse": "6.2.1",
"csv-stringify": "6.7.0",
"dom-to-image": "2.6.0",
"embla-carousel-react": "8.6.0",
"hyparquet": "1.25.8",
"hyparquet-compressors": "1.1.1",
"jschardet": "3.1.4",
"lodash-es": "4.18.1",
"lucide-react": "0.577.0",
"monaco-editor": "0.55.1",
"next": "16.2.6",
"prismjs": "1.30.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-intersection-observer": "9.16.0",
"react-simple-code-editor": "0.14.1",
"react-split": "2.0.14",
"react-virtualized-auto-sizer": "1.0.26",
"react-window": "1.8.11",
"recharts": "2.15.4",
"seek-bzip": "2.0.0",
"tailwind-merge": "3.6.0",
"tailwindcss-animate": "1.0.7",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@playwright/test": "1.59.1",
"@tailwindcss/postcss": "4.3.0",
"@types/bun": "latest",
"@types/dom-to-image": "2.6.7",
"@types/lodash-es": "4.17.12",
"@types/node": "24.12.4",
"@types/prismjs": "1.26.6",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-window": "1.8.8",
"baseline-browser-mapping": "2.10.30",
"eslint": "9.39.4",
"eslint-config-next": "16.2.6",
"postcss": "8.5.14",
"prettier": "3.8.3",
"serve": "14.2.6",
"tailwindcss": "4.3.0",
"typescript": "5.9.3"
},
"browserslist": [
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari versions"
],
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}