-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
105 lines (105 loc) · 3.32 KB
/
package.json
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
{
"name": "logic-pad",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://logic-pad.com",
"repository": {
"type": "git",
"url": "https://github.com/hlysine/logic-pad.git"
},
"license": "AGPL-3.0-only",
"scripts": {
"client:dev": "bunx --bun vite --host",
"server:dev": "bun --watch src/server/index.ts",
"dev": "concurrently \"bun:*:dev\"",
"start": "bun src/server/index.ts",
"client:build": "bunx --bun tsc && bunx --bun vite build",
"server:build": "bun-vercel ./src/server/vercel.ts --funcPath api",
"build": "bun run client:build && bun run server:build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"client:preview": "bunx --bun vite preview",
"check-bundle": "bunx vite-bundle-visualizer",
"pwa-gen": "npx @vite-pwa/assets-generator --preset minimal-2023 public/logo.svg"
},
"engines": {
"bun": ">=1.1.0"
},
"dependencies": {
"@dnd-kit/sortable": "^8.0.0",
"@hlysine/bun-vercel": "^1.0.0-alpha.8",
"@monaco-editor/react": "^4.6.0",
"@tanstack/react-router": "^1.22.1",
"@tanstack/router-devtools": "^1.22.2",
"@tonejs/piano": "^0.2.1",
"@use-gesture/react": "^10.3.1",
"@vercel/speed-insights": "^1.0.10",
"animejs": "^3.2.2",
"base64-arraybuffer": "^1.0.2",
"caniuse-lite": "^1.0.30001695",
"compression-streams-polyfill": "^0.1.7",
"dedent": "^1.5.3",
"elysia": "^1.0.21",
"event-iterator": "^2.0.0",
"events": "^3.3.0",
"fuzzysort-esm": "^3.0.1",
"grilops": "^0.1.1",
"lodash": "^4.17.21",
"million": "^3.0.6",
"monaco-editor": "^0.47.0",
"monaco-themes": "^0.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.5.0",
"react-icons": "^5.2.0",
"react-markdown": "^9.0.1",
"remark-inline-spoiler": "^1.0.1",
"tone": "^14.9.17",
"z3-solver": "^4.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tanstack/router-vite-plugin": "^1.20.5",
"@types/animejs": "^3.1.12",
"@types/bun": "^1.0.12",
"@types/dts-bundle": "^0.0.35",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"clsx": "^2.1.0",
"concurrently": "^8.2.2",
"daisyui": "^4.7.2",
"dts-bundle": "^0.7.3",
"eslint": "^8.57.0",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-standard": "^5.0.0",
"fast-glob": "^3.3.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-pwa": "^0.19.8",
"vite-plugin-replace": "^0.1.1"
},
"trustedDependencies": [
"@vercel/speed-insights",
"esbuild"
]
}