-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "hackgreenville_com",
"license": "SEE LICENSE IN LICENSE.MD",
"description": "website for hackgreenville",
"private": false,
"engines": {
"node": ">=22.12.0"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "echo 'Running art test'",
"posttest": "php artisan test --parallel",
"lint": "prettier --write \"resources/{js,css}/**/*.{ts,tsx,md,json,js,css}\" --loglevel=error",
"lint:php": "composer lint --dev"
},
"pre-commit": [
"lint",
"lint:php"
],
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"laravel-vite-plugin": "^2.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"sharp": "0.32.0",
"tailwindcss": "^4.0.0",
"vite": "^7.0.7",
"vite-plugin-image-optimizer": "^1.1.6"
},
"dependencies": {
"@fullcalendar/core": "^4.4.0",
"@fullcalendar/daygrid": "^4.4.0",
"@fullcalendar/list": "^4.4.2",
"@hotwired/turbo": "^8.0.23",
"alpinejs": "^3.14.9",
"geist": "^1.7.0"
}
}