-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.62 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "advising-app",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:vite && npm run build:widgets && npm run build:portals",
"build:portals": "(cd portals && npm i && npm run build)",
"build:vite": "vite build",
"build:widgets": "(cd widgets && npm i && npm run build)",
"dev": "vite",
"dev:widgets": "(cd widgets && npm i && npm run dev)",
"dev:portals": "(cd portals && npm i && npm run dev)",
"postinstall": "node npm-postinstall.cjs"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"env-cmd": "^10.1.0",
"filepond": "^4.32.8",
"filepond-plugin-file-validate-size": "^2.2.8",
"filepond-plugin-file-validate-type": "^1.2.9",
"filepond-plugin-image-preview": "^4.6.12",
"flowbite": "^3.0.0",
"laravel-echo": "^1.14.0",
"laravel-vite-plugin": "^2.0.1",
"resolve-url-loader": "^5.0.0",
"tailwindcss": "^4.0.0",
"tippy.js": "^6.3.7",
"vite": "^7.3.2",
"vue-filepond": "^7.0.4"
},
"devDependencies": {
"@headlessui/vue": "^1.7.16",
"@heroicons/vue": "^2.1.1",
"@ryangjchandler/alpine-clipboard": "^2.3.0",
"@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",
"@twilio/conversations": "^2.5.0",
"@vitejs/plugin-vue": "^6.0.3",
"alpinejs": "^3.13.2",
"axios": "^1.16.0",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"dompurify": "^3.4.0",
"dropzone": "^5.9.2",
"esbuild": "^0.27.2",
"esbuild-plugin-polyfill-node": "^0.3.0",
"github-slugger": "^2.0.0",
"marked": "^12.0.0",
"marked-gfm-heading-id": "^3.2.0",
"pinia": "^2.1.7",
"postcss": "^8.5.12",
"postcss-import": "^16.0.1",
"prettier": "^3.6.2",
"prettier-plugin-blade": "^2.1.21",
"prettier-plugin-organize-imports": "^4.1.0",
"pusher-js": "^7.4.0",
"sortablejs": "^1.15.0",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"vue-signature-pad": "^3.0.2",
"vue-tsc": "^3.2.5"
}
}