-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.16 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
75
76
77
78
79
80
{
"private": true,
"license": "MIT",
"packageManager": "bun@1.3.14",
"scripts": {
"cleanup": "rm -rf ./node_modules",
"css:build": "cross-env ENV_BUILD=prod postcss nova/resources/css/app.css --base nova/resources --dir public/dist --verbose",
"js:build": "cross-env ENV_BUILD=prod esbuild nova/resources/js/app.js --bundle --minify --outfile=public/dist/js/app.js",
"js:build-dev": "esbuild nova/resources/js/app.js --bundle --minify --sourcemap=inline --outfile=public/dist/js/app.js",
"dev": "concurrently \"bun run js:build-dev\" \"bun run css:build\"",
"prod": "concurrently \"bun run js:build\" \"bun run css:build\""
},
"dependencies": {
"@alpinejs/collapse": "^3.16.3",
"@alpinejs/focus": "^3.16.3",
"@awcodes/alpine-floating-ui": "^3.6.4",
"@floating-ui/dom": "^1.8.0",
"@jaames/iro": "^5.5.2",
"@nextapps-be/livewire-sortablejs": "^0.2.3",
"@ryangjchandler/alpine-clipboard": "^2.3.0",
"@ryangjchandler/alpine-tooltip": "^2.0.1",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindplus/elements": "^1.0.22",
"@tiptap/core": "^2.27.2",
"@tiptap/extension-character-count": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-text-align": "^2.27.2",
"@tiptap/extension-underline": "^2.27.2",
"@tiptap/pm": "^2.27.2",
"@tiptap/starter-kit": "^2.27.2",
"@toolwind/corner-shape": "^0.0.8-3",
"@yaireo/tagify": "^4.38.0",
"alpinejs": "^3.16.3",
"axios": "^1.20.0",
"countable": "^3.0.1",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"esbuild": "^0.25.12",
"filepond": "^4.32.12",
"filepond-plugin-file-poster": "^2.5.2",
"filepond-plugin-image-preview": "^4.6.12",
"hex-to-rgba": "^2.0.1",
"lodash": "^4.18.1",
"numeral": "^2.0.6",
"playwright": "^1.62.1",
"pluralize": "^8.0.0",
"pretty": "^2.0.0",
"resolve-url-loader": "^5.0.0",
"shepherd.js": "^14.5.1",
"sortablejs": "^1.15.7",
"tippy.js": "^6.3.7",
"truecropper": "^1.0.3"
},
"devDependencies": {
"@alpinejs/anchor": "^3.16.3",
"@danharrin/alpine-mousetrap": "^0.1.9",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.20",
"autoprefixer": "^10.5.4",
"concurrently": "^8.2.2",
"cssnano": "^6.1.2",
"cypress": "^13.17.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.11",
"eslint-plugin-import": "^2.32.0",
"postcss": "^8.5.26",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.2.0",
"prettier": "^3.9.6",
"prettier-plugin-blade": "^2.1.21",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.3.3",
"tailwindcss-animation-delay": "^1.2.0"
}
}