-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.39 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "lakefs-ui",
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">= 18"
},
"overrides": {
"react": "$react",
"react-dom": "$react",
"prismjs": "$prismjs"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"postbuild": "touch dist/.gitkeep",
"build-watch": "vite build --watch",
"serve": "vite preview",
"test": "vitest run",
"test-watch": "vitest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"typesync": "typesync"
},
"dependencies": {
"@duckdb/duckdb-wasm": "1.28.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.20",
"@primer/octicons-react": "^17.10.0",
"@theme-toggles/react": "^4.1.0",
"apache-arrow": "^15.0.0",
"bootstrap": "^5.3.2",
"csstype": "^3.1.3",
"dayjs": "^1.11.10",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"lodash": "^4.17.21",
"p-map": "^7.0.0",
"prismjs": "^1.30.0",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-diff-viewer-continued": "^3.3.1",
"react-dom": "^18.2.0",
"react-dropzone": "14.2.3",
"react-icons": "^4.12.0",
"react-ipynb-renderer": "^2.2.1",
"react-leaflet": "^4.2.1",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.20.1",
"react-simple-code-editor": "^0.13.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"rehype-react": "^8.0.0",
"rehype-wrap": "^1.1.0",
"remark": "^14.0.2",
"remark-gfm": "^4.0.0",
"remark-html": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"unified": "^11.0.4",
"unist-util-visit": "^4.1.2",
"validator": "^13.11.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@eslint/compat": "^2.0.2",
"@playwright/test": "^1.40.1",
"@rollup/plugin-replace": "^5.0.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bootstrap": "^5.2.10",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/leaflet": "^1.9.17",
"@types/lodash": "^4.14.202",
"@types/mdast": "^3.0.10",
"@types/mime-types": "^3.0.1",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^5.0.1",
"@vitejs/plugin-react-swc": "^4.0.1",
"browserslist": "^4.22.2",
"dotenv": "^16.3.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-compat": "^6.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"happy-dom": "^20.0.10",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^3.0.1",
"playwright": "^1.40.1",
"prettier": "^3.7.4",
"sass": "^1.98.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.2",
"vite-plugin-eslint2": "^5.0.4",
"vitest": "^3.2.4"
}
}