generated from KagChi/laravarly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@kagchi/laravarly",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint resources/js",
"lint:fix": "eslint resources/js --fix && php vendor/bin/php-cs-fixer fix --allow-risky=yes --quiet"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.14",
"axios": "^1.6.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@hazmi35/eslint-config": "12.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "8.57.1",
"eslint-plugin-tailwindcss": "3.18.0",
"laravel-vite-plugin": "^1.0",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^6.0.0"
},
"packageManager": "pnpm@9.15.4",
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@hazmi35/eslint-config/typescript",
"plugin:tailwindcss/recommended"
],
"settings": {
"tailwindcss": {
"cssFiles": [
"resources/css/app.css"
]
}
},
"rules": {
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"max-lines": "off"
}
}
}