-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 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
{
"name": "ProjectName",
"private": true,
"type": "module",
"scripts": {
"prestart": "node aspnetcore-https.cjs",
"dev": "npm run start",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx && prettier --check src && tsc --noEmit",
"format": "eslint src --fix && prettier --write src"
},
"dependencies": {
"@inertiajs/react": "^2.0.3",
"axios": "^1.10.0",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"lucide-react": "^0.544.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-use": "^17.6.0",
"tailwindcss": "^4.0.0"
},
"devDependencies": {
"@inertiacore/vite-plugin": "^2.0.0",
"@tailwindcss/vite": "^4.0.6",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^5.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript-eslint": "^8.44.0",
"vite": "^7.0.0"
}
}