-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
99 lines (99 loc) · 3.89 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "npm run watching",
"watching": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"cms:build": "npm run cms:run-build",
"cms:dev": "vite",
"cms:run-build": "vite build",
"theme:dev": "npm run theme:run-dev",
"theme:run-dev": "vite --config themes/$npm_config_theme/config.js",
"theme:build": "npm run theme:run-build",
"theme:run-build": "vite build --config themes/$npm_config_theme/config.js && php artisan theme:publish $npm_config_theme",
"theme:ssr-build": "npm run theme:run-ssr-build",
"theme:run-ssr-build": "vite build --config themes/$npm_config_theme/config.js && vite build --ssr --config themes/$npm_config_theme/config.js --outDir themes/$npm_config_theme/assets/ssr && php artisan theme:publish $npm_config_theme",
"theme:ssr-preview": "npm run theme:run-ssr-preview",
"theme:run-ssr-preview": "npm run theme:ssr-build && php artisan inertia:start-ssr"
},
"devDependencies": {
"@erbelion/vite-plugin-laravel-purgecss": "^0.2.2",
"@headlessui/react": "^1.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/jquery": "^3.5.17",
"@types/lodash": "^4.14.187",
"@types/react": "^18.2.15",
"@types/react-bootstrap-table2-toolkit": "^2.1.7",
"@types/react-dom": "^18.2.7",
"@types/ziggy-js": "^1.3.2",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.12",
"axios": "^1.1.2",
"bootstrap": "^4.4.1",
"browser-sync": "^2.27.10",
"browser-sync-webpack-plugin": "^2.3.0",
"jquery": "^3.7.0",
"laravel-mix": "^6.0.6",
"laravel-vite-plugin": "^0.7.2",
"lodash": "^4.17.19",
"postcss": "^8.4.13",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.66.1",
"tailwindcss": "^3.2.1",
"ts-loader": "^9.4.1",
"typescript": "^5.1.6",
"vite": "^4.0.0"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-react": "^7.22.5",
"@ckeditor/ckeditor5-build-classic": "^39.0.1",
"@ckeditor/ckeditor5-react": "^6.1.0",
"@inertiajs/react": "^1.0.9",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"axios": "^1.4.0",
"chart.js": "^4.4.0",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"font-awesome": "^4.7.0",
"ionicons": "^7.1.2",
"node-fetch": "2",
"popper.js": "^1.15.0",
"postcss-import": "^14.1.0",
"postcss-nesting": "^10.1.5",
"react": "^18.2.0",
"react-bootstrap-table-next": "^4.0.3",
"react-chartjs-2": "^5.2.0",
"react-day-picker": "^8.8.0",
"react-dom": "^18.2.0",
"react-select": "^5.7.4",
"tailwind-merge": "^1.13.2",
"tailwindcss": "^3.0.24",
"tailwindcss-animate": "^1.0.6",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack-node-externals": "^3.0.0",
"ziggy-js": "^1.5.0"
}
}