-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.81 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.81 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
{
"name": "secboard",
"description": "SecBoard - 网页白板与视频展台",
"author": "LanStart",
"private": true,
"version": "1.0.0",
"lanstartCodename": "Viweivi",
"scripts": {
"dev": "bun run dev:all",
"dev:all": "bunx --package concurrently concurrently -k -n backend,web \"bun run dev:backend\" \"bun run dev:web\"",
"dev:web": "bunx vite --config vite.config.ts",
"dev:backend": "bun --watch src/elysia/index.ts",
"build": "bunx vite build --config vite.config.ts",
"build:backend": "bunx tsc -p tsconfig.backend.json",
"preview": "bunx vite preview --config vite.config.ts",
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
"test": "bunx vitest run",
"release": "release-it"
},
"dependencies": {
"@fluentui/react-icons": "^2.0.285",
"@mantine/core": "^8.3.14",
"@mantine/hooks": "^8.3.14",
"elysia": "^1.4.3",
"fast-xml-parser": "^5.3.6",
"framer-motion": "^12.29.2",
"leafer-ui": "^2.0.0",
"perfect-freehand": "^1.2.3",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"yauzl": "^3.2.0",
"yazl": "^3.3.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.1",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^3.3.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"jsdom": "^25.0.1",
"postcss": "^8.5.6",
"release-it": "^19.2.4",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^2.1.9"
}
}