-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
113 lines (113 loc) · 3.61 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
106
107
108
109
110
111
112
113
{
"name": "flok-web",
"version": "1.3.0",
"description": "Web server for Flok",
"author": "Damián Silvani <[email protected]>",
"license": "GPL-3.0+",
"type": "module",
"bin": "./bin/flok-web.js",
"files": [
"bin",
"dist",
"cert",
"server.js",
"vite-express.js",
"vite.config.ts"
],
"scripts": {
"dev": "cross-env NODE_ENV=development node ./bin/flok-web.js",
"prebuild": "node script/prebuild.js",
"build": "npm run prebuild && tsc && vite build",
"start": "node ./bin/flok-web.js",
"check": "tsc --noEmit",
"lint": "prettier -c .",
"format": "prettier -w ."
},
"dependencies": {
"@flok-editor/server-middleware": "^1.3.0",
"@strudel/draw": "^1.1.0",
"@uiw/codemirror-theme-andromeda": "^4.22.1",
"@uiw/codemirror-theme-bespin": "^4.22.1",
"@uiw/codemirror-theme-console": "^4.22.1",
"@uiw/codemirror-theme-github": "^4.22.1",
"@uiw/codemirror-theme-monokai": "^4.22.1",
"@uiw/codemirror-theme-solarized": "^4.22.1",
"@uiw/codemirror-theme-xcode": "^4.22.1",
"commander": "^10.0.0",
"compression": "^1.7.4",
"express": "^4.18.2",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-python": "^6.1.3",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.0",
"@flok-editor/cm-eval": "^1.3.0",
"@flok-editor/lang-tidal": "^1.3.0",
"@flok-editor/lang-punctual": "^1.3.0",
"@flok-editor/session": "^1.3.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-menubar": "^1.1.4",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@replit/codemirror-vim": "^6.2.1",
"@strudel/codemirror": "^1.1.0",
"@strudel/core": "^1.1.0",
"@strudel/midi": "^1.1.0",
"@strudel/mini": "^1.1.0",
"@strudel/osc": "^1.1.0",
"@strudel/serial": "^1.1.0",
"@strudel/soundfonts": "^1.1.0",
"@strudel/tonal": "^1.1.0",
"@strudel/transpiler": "^1.1.0",
"@strudel/webaudio": "^1.1.0",
"@types/express": "^4.17.21",
"@types/p5": "^1.7.6",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@uiw/codemirror-themes": "^4.22.0",
"@uiw/react-codemirror": "^4.19.11",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.14",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"codemirror": "^6.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"hydra-synth": "^1.3.29",
"lucide-react": "^0.128.0",
"mercury-engine": "^1.2.2",
"p5": "^1.9.0",
"postcss": "^8.4.21",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^6.9.0",
"tailwind-merge": "^1.10.0",
"tailwindcss": "^3.2.7",
"tailwindcss-animate": "^1.0.5",
"typescript": "^5.3.3",
"unique-names-generator": "^4.7.1",
"unplugin-fonts": "^1.1.1",
"vite": "^5.0.12",
"vite-plugin-node-polyfills": "^0.19.0",
"y-codemirror.next": "github:munshkr/y-codemirror.next#dee71ac8d65bc640db60a188b916d1a0147a9439",
"y-indexeddb": "^9.0.9",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.5",
"y-websocket": "^1.5.0",
"yjs": "^13.6.21"
}
}