forked from RetroAchievements/RAWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.62 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"private": true,
"name": "raweb",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && vite build --ssr",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint public/js resources/js postcss.config.js tailwind.config.js vite.config.ts --cache",
"fix": "npm run fix:eslint",
"fix:eslint": "eslint public/js resources/js postcss.config.js tailwind.config.js vite.config.ts --fix",
"test": "vitest run --reporter=dot",
"test:watch": "vitest",
"analyze": "cross-env ANALYZE=true npm run prod"
},
"dependencies": {
"@floating-ui/dom": "^1.5.1",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-query": "^5.51.23",
"axios": "^1.7.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"js-cookie": "^3.0.5",
"linkify-html": "^4.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.13.0",
"react-use": "^17.5.1",
"sonner": "^1.5.0",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^1.0.35",
"ziggy-js": "^2.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@inertiajs/react": "^1.2.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.0",
"@tanstack/eslint-plugin-query": "^5.51.15",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/alpinejs": "^3.7.2",
"@types/alpinejs__focus": "^3.10.0",
"@types/js-cookie": "^3.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^4.3.1",
"alpinejs": "^3.12.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-vitest": "^0.5.4",
"jsdom": "^22.1.0",
"laravel-echo": "^1.15.1",
"laravel-vite-plugin": "^1.0.4",
"postcss": "^8.4.31",
"postcss-nesting": "^12.1.5",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.6.6",
"pusher-js": "^8.2.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"type-fest": "^4.25.0",
"typescript": "^5.4.5",
"vite": "^5.3.4",
"vitest": "^2.0.3"
},
"engines": {
"node": "20.x",
"npm": ">=8.18.0"
}
}