-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 888 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 888 Bytes
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
{
"name": "modular",
"version": "2.0.0",
"description": "Skeleton for a modular PHP web applications base on MVC pattern with Vite for auto web refresh and Tailwindcss for a modern design",
"main": "./public/index.php",
"type": "module",
"scripts": {
"vite": "vite",
"build": "vite build",
"start": "vite preview",
"tail": "npx tailwindcss -o ./public/assets/css/global/main.css --minify --watch"
},
"keywords": [
"modular",
"mvc",
"php",
"framework",
"web",
"application",
"api",
"skeleton"
],
"author": "Bytes4Run",
"license": "MIT",
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.18",
"axios": "^1.6.7",
"flowbite": "^2.3.0",
"laravel-vite-plugin": "^1.0.2",
"postcss": "^8.4.35",
"sass": "^1.71.1",
"tailwindcss": "^3.4.1",
"vite": "^5.1.4"
}
}