-
-
Notifications
You must be signed in to change notification settings - Fork 811
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.12 KB
/
package.json
File metadata and controls
78 lines (78 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
70
71
72
73
74
75
76
77
78
{
"name": "gotify-ui",
"version": "0.2.0",
"private": true,
"homepage": ".",
"proxy": "http://localhost:80",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@uiw/codemirror-theme-material": "^4.24.2",
"@uiw/react-codemirror": "^4.24.2",
"@vitejs/plugin-react": "^5.0.0",
"axios": "^1.11.0",
"detect-browser": "^5.3.0",
"fractional-indexing": "^3.2.0",
"mobx": "^6.13.7",
"mobx-react-lite": "^4.1.0",
"mobx-utils": "^6.1.1",
"notifyjs": "^3.0.0",
"notistack": "^3.0.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"react-router": "^7.12.0",
"react-router-dom": "^7.12.0",
"react-timeago": "^8.3.0",
"react-virtuoso": "^4.13.0",
"remark-gfm": "^4.0.1",
"remove-markdown": "^0.6.2",
"tss-react": "^4.9.19",
"typeface-roboto": "1.1.13",
"vite": "^7.0.6",
"vitest": "^4.0.0"
},
"scripts": {
"start": "vite",
"prebuild": "tsc",
"build": "vite build",
"test": "vitest --disable-console-intercept --no-file-parallelism",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"format": "prettier \"src/**/*.{ts,tsx}\" --write",
"testformat": "prettier \"src/**/*.{ts,tsx}\" --list-different"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/notifyjs": "^3.0.5",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@types/react-router-dom": "^5.3.3",
"@types/remove-markdown": "^0.3.4",
"eslint": "^9.32.0",
"get-port": "^7.1.0",
"prettier": "^3.6.2",
"puppeteer": "^24.15.0",
"rimraf": "^6.0.1",
"tree-kill": "^1.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0",
"wait-on": "^9.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}