-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"engines": {
"node": "18.x",
"npm": "9.x"
},
"scripts": {
"build": "vite build",
"build:sourcemap": "vite build --sourcemap",
"dev": "vite",
"lint": "eslint resources --ext .js,.jsx",
"format": "prettier --write \"resources/**/*.{js,jsx,css}\"",
"postinstall": "npm run build || true",
"heroku-postbuild": "npm ci && npm run build"
},
"devDependencies": {
"@headlessui/react": "^2.0.0",
"@inertiajs/react": "^2.0.0",
"@sentry/cli": "^2.53.0",
"@sentry/react": "^7.120.4",
"@sentry/tracing": "^7.120.4",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/vite": "^4.0.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.12",
"axios": "^1.11.0",
"concurrently": "^9.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"laravel-vite-plugin": "^2.0.0",
"postcss": "^8.4.31",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.1",
"vite": "^7.0.4"
}
}