-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "k2-control-workbench",
"version": "1.0.0",
"type": "module",
"description": "Control Dojo with automatic examples list generation and ZIP creation",
"main": "server.js",
"scripts": {
"dev": "vite",
"dev:full": "concurrently \"npm run start\" \"npm run dev\"",
"build": "vite build",
"preview": "vite preview",
"start": "node server.js",
"start:backend": "node server.js",
"start:frontend": "vite",
"generate-controls": "node scripts/generate_controls_list.js"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"archiver": "^7.0.1",
"dompurify": "^3.3.1",
"express": "^5.2.1",
"flowbite": "^4.0.1",
"flowbite-vue": "^0.2.2",
"highlight.js": "^11.11.1",
"jszip": "^3.10.1",
"markdown-it": "^14.1.0",
"vue": "^3.5.26"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.3",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1"
},
"keywords": [
"k2",
"control",
"workbench",
"examples",
"zip"
],
"author": "",
"license": "MIT",
"overrides": {
"flowbite": "^4.0.1"
}
}