-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.81 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.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
92
93
94
95
96
97
98
99
100
101
{
"name": "ffxi-tracker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"format": "prettier --write .",
"lint:md": "markdownlint-cli2 '*.md' '.cursor/**/*.mdc' --config .markdownlint.json",
"lint:md:fix": "markdownlint-cli2 '*.md' '.cursor/**/*.mdc' --config .markdownlint.json --fix",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"quality-check": "yarn lint:fix && yarn lint:md:fix && yarn format && yarn test:run && yarn build",
"clean": "rm -rf dist coverage .vite node_modules/.cache",
"clean:install": "yarn clean && yarn install",
"start": "yarn dev",
"ci": "yarn install --frozen-lockfile && yarn quality-check",
"test:rules": "cd eslint-rules/tests && for test in *.test.cjs; do echo \"Testing $test...\" && node \"$test\" || exit 1; done && echo \"All rule tests passed!\"",
"validate:rules": "eslint eslint-rules/**/*.cjs --max-warnings=0",
"validate:rules:structure": "yarn validate:rules",
"maintain:rules": "yarn test:rules && yarn validate:rules"
},
"dependencies": {
"@fontsource/montserrat": "^5.2.6",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/supabase-js": "^2.50.0",
"@types/react-router-dom": "^5.3.3",
"clsx": "^2.1.1",
"formik": "^2.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.2",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^1.0.0",
"vaul": "^1.1.2",
"yup": "^1.6.1"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@stylistic/eslint-plugin": "^4.4.1",
"@tailwindcss/vite": "^4.1.10",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.0.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-better-tailwindcss": "^3.4.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^51.1.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"fs-extra": "^11.3.0",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"markdownlint-cli2": "^0.18.1",
"node-unzipper": "^0.0.3",
"pngquant-bin": "^9.0.0",
"postcss": "^8.5.6",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.13",
"sharp": "^0.34.2",
"tailwindcss": "^4.0.0",
"tw-animate-css": "^1.3.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vitest": "^3.2.4",
"yauzl": "^3.2.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}