-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.76 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
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
102
103
{
"name": "fedc5-dopen-hoil",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"type-check": "tsc --noEmit --project ./tsconfig.json",
"lint": "eslint . --ext ts,tsx --max-warnings 0 --fix",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate:openapi": "openapi-generator-cli generate --reserved-words-mappings delete=delete -g typescript-axios -i ./src/shared/openapi/openapi.yaml -o ./src/shared/openapi/generate -t ./src/shared/openapi/mustaches -c ./src/shared/openapi/openapitools.json --skip-validate-spec --global-property=debugModels,debugOperations > ./output.txt && npx prettier --write .",
"generate:supabase": "npx supabase login && npx supabase gen types --lang=typescript --project-id gasaggpnkceuwogvnyhb --schema public > ./src/shared/supabase/database.types.ts"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-context": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@supabase/supabase-js": "^2.45.4",
"@suspensive/react": "^2.14.0",
"@tanstack/react-query": "^5.52.0",
"@tanstack/react-router": "^1.85.0",
"axios": "^1.6.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^10.16.16",
"idb": "^8.0.0",
"lucide-react": "^0.460.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hook-form": "^7.49.2",
"reflect-metadata": "^0.1.13",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.24.7",
"@openapitools/openapi-generator-cli": "^2.13.5",
"@park-ui/panda-preset": "^0.42.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@tanstack/eslint-plugin-query": "^5.53.0",
"@tanstack/router-devtools": "^1.50.1",
"@tanstack/router-plugin": "^1.49.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.10.5",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/browser": "^2.1.1",
"@xionhub/fsd-prettier": "^1.0.0",
"@xionhub/fsd-typescript": "^1.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-tailwindcss": "^3.7.0",
"happy-dom": "^15.7.4",
"husky": "^9.1.6",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"openapi-fetch": "^0.12.0",
"openapi-typescript": "^7.3.3",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.15",
"tsc-files": "^1.1.4",
"typescript": "^5.5.4",
"vite": "^5.0.8",
"vite-bundle-visualizer": "^1.2.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}