-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.95 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
{
"name": "aiding-app",
"private": true,
"scripts": {
"dev": "vite",
"dev:form": "(cd widgets/form && vite)",
"build:js-compile": "node ./bin/build.js",
"build:filament": "php artisan filament:assets",
"build:vite": "vite build",
"build:service-request-form": "(cd widgets/service-request-form && vite build)",
"build:service-request-feedback-form": "(cd widgets/service-request-feedback-form && vite build)",
"build:widgets": "npm run build:service-request-form && npm run build:service-request-feedback-form",
"build:knowledge-management": "(cd portals/knowledge-management && vite build)",
"build:portals": "npm run build:knowledge-management",
"build": "npm run build:js-compile && npm run build:vite && npm run build:filament && npm run build:widgets && npm run build:portals",
"api-docs:generate": "export NODE_OPTIONS=--max_old_space_size=4096 && env-cmd spectaql spectaql.yml"
},
"devDependencies": {
"@headlessui/vue": "^1.7.16",
"@shufo/prettier-plugin-blade": "1.13.4",
"@tiptap/core": "^2.2.1",
"@tiptap/extension-color": "^2.2.1",
"@tiptap/extension-link": "^2.2.1",
"@tiptap/extension-placeholder": "^2.2.1",
"@tiptap/extension-text-style": "^2.2.1",
"@tiptap/extension-underline": "^2.2.1",
"@tiptap/html": "^2.2.1",
"@tiptap/pm": "^2.2.1",
"@tiptap/starter-kit": "^2.2.1",
"@tiptap/suggestion": "^2.2.1",
"@vitejs/plugin-vue": "^5.0.4",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"dropzone": "^5.9.2",
"esbuild": "^0.20.0",
"flatpickr": "^4.6.9",
"jquery": "^3.2",
"postcss": "^8.4.31",
"postcss-import": "^16.0.1",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^4.1.0",
"resolve-url-loader": "^5.0.0",
"select2": "^4.0.13",
"tailwindcss": "^3.3.3",
"vue-signature-pad": "^3.0.2",
"vue-tsc": "^2.1.10"
},
"type": "module",
"dependencies": {
"@formkit/icons": "^1.2.2",
"@formkit/themes": "^1.2.2",
"@formkit/vue": "^1.2.2",
"@heroicons/vue": "^2.1.1",
"@ryangjchandler/alpine-clipboard": "^2.3.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@twilio/conversations": "^2.5.0",
"alpinejs": "^3.13.2",
"autoprefixer": "^10.4.19",
"axios": "^1.6.7",
"dompurify": "^3.0.6",
"env-cmd": "^10.1.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"flowbite": "^2.3.0",
"laravel-vite-plugin": "^1.0.4",
"lodash": "^4.17.21",
"marked": "^12.0.0",
"pinia": "^2.1.7",
"showdown": "^2.1.0",
"sortablejs": "^1.15.0",
"spectaql": "^3.0.0",
"tippy.js": "^6.3.7",
"vite": "^5.4.6",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
}
}