-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 953 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 953 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
37
{
"name": "phpure",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve:run": "php -S $APP_HOST_PORT -t public",
"serve": "dotenv -- npm run serve:run",
"dev:all": "concurrently \"npm run dev\" \"npm run serve\""
},
"repository": {
"type": "git",
"url": "https://github.com/mttk2004/phpure.git"
},
"author": "Mai Tran Tuan Kiet",
"license": "MIT",
"bugs": {
"url": "https://github.com/mttk2004/phpure/issues"
},
"homepage": "https://github.com/mttk2004/phpure#readme",
"devDependencies": {
"@vitejs/plugin-legacy": "^6.0.2",
"concurrently": "^9.1.2",
"dotenv-cli": "^8.0.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.3",
"vite": "^6.2.5"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.3",
"@tailwindcss/vite": "^4.1.3",
"alpinejs": "^3.14.9",
"sweetalert2": "^11.17.2"
}
}