-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.81 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.81 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
{
"private": true,
"type": "module",
"name": "annotation-management-system",
"version": "0.0.1",
"license": "Apache-2.0",
"scripts": {
"build": "vite build",
"build:ssr": "vite build && vite build --ssr",
"dev": "vite",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "prettier --write",
"format:staged:styles": "stylelint --fix",
"format:php": "vendor/bin/pint",
"lint": "eslint 'resources/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'resources/**/*.{js,jsx,ts,tsx}' --fix",
"lint:styles": "stylelint './resources/**/*.css' './resources/**/*.scss'",
"lint:styles:fix": "stylelint './resources/**/*.css' './resources/**/*.scss' --fix",
"types": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"sass-embedded": "^1.99.0",
"stylelint": "^17.7",
"stylelint-config-standard-scss": "^17.0",
"stylelint-config-tailwindcss": "^1.0.1",
"stylelint-prettier": "^5.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^7.3",
"vite-plugin-manifest-sri": "^0.2.0"
},
"dependencies": {
"@fontsource-utils/scss": "^0.2.2",
"@fontsource-variable/fira-code": "^5.2.7",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/montserrat": "^5.2.8",
"@fontsource-variable/quicksand": "^5.2.10",
"@fontsource-variable/source-sans-3": "^5.2.9",
"@fontsource/ubuntu": "^5.2.8",
"@inertiajs/react": "^3.0.3",
"@inertiajs/vite": "^3.0.3",
"@types/react-google-recaptcha": "^2.1.9",
"altcha": "^2.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"globals": "^17.5.0",
"laravel-vite-plugin": "^2.1",
"lucide-react": "^1.8.0",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-aria-components": "^1.17.0",
"react-dom": "^19.2.5",
"react-google-recaptcha": "^3.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.1.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.60.1",
"@tailwindcss/oxide-linux-x64-gnu": "^4.2.2",
"lightningcss-linux-x64-gnu": "^1.32.0"
},
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=24.14.0",
"npm": ">=11.11.0"
}
}