-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.56 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.56 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
{
"name": "@omnidotdev/template-tanstack-start",
"private": true,
"type": "module",
"packageManager": "bun@1.3.6",
"scripts": {
"dev": "concurrently --kill-others --names \"GRAPHQL-CODEGEN,CLIENT\" -c \"bgBlue.bold,bgMagenta.bold\" \"bun run graphql:generate:watch\" \"vite dev\"",
"build": "vite build",
"serve": "vite preview",
"start": "node .output/server/index.mjs",
"icons:generate": "bun scripts/generateIcons.ts",
"graphql:generate": "NODE_PATH=src/ dotenv -e .env.development -- graphql-codegen --config src/lib/graphql/codegen.config.ts",
"graphql:generate:watch": "bun graphql:generate -w",
"format": "biome format --write",
"lint": "biome lint",
"check": "biome check --diagnostic-level=error src",
"knip": "knip-bun --tags=-knipignore",
"pwa:audit": "unlighthouse-ci --site https://localhost:3000",
"test": "bun test src",
"test:watch": "bun test src --watch",
"test:coverage": "bun test src --coverage",
"test:e2e": "NODE_ENV=test playwright test",
"test:e2e:ui": "NODE_ENV=test playwright test --ui",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@faker-js/faker": "^10.2.0",
"@graphql-codegen/add": "^6.0.0",
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/import-types-preset": "^3.0.1",
"@graphql-codegen/plugin-helpers": "^6.1.0",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-graphql-request": "^6.4.0",
"@graphql-codegen/typescript-msw": "^3.0.1",
"@graphql-codegen/typescript-operations": "^5.0.7",
"@graphql-codegen/typescript-react-query": "^6.1.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@happy-dom/global-registrator": "^20.3.7",
"@playwright/test": "^1.58.0",
"@serwist/vite": "^9.5.0",
"@tanstack/devtools-vite": "^0.4.1",
"@tanstack/react-devtools": "0.9.2",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-router-devtools": "^1.166.11",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.6",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@unlighthouse/cli": "^0.17.4",
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"happy-dom": "^20.3.7",
"husky": "^9.1.7",
"knip": "^5.82.1",
"msw": "^2.12.7",
"serwist": "^9.5.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-imagetools": "^9.0.2",
"vite-plugin-mkcert": "^1.17.9"
},
"dependencies": {
"@ark-ui/react": "^5.30.0",
"@icons-pack/react-simple-icons": "^13.8.0",
"@omnidotdev/providers": "github:omnidotdev/providers#c24cfbc",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/nitro-v2-vite-plugin": "^1.154.7",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-router": "^1.157.6",
"@tanstack/react-router-ssr-query": "^1.157.6",
"@tanstack/react-start": "^1.157.6",
"@tanstack/react-table": "^8.21.3",
"better-auth": "^1.4.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"graphql": "^16.12.0",
"graphql-request": "^7.4.0",
"jose": "^6.1.3",
"lucide-react": "^0.563.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"vite-tsconfig-paths": "^6.0.5",
"zod": "^4.3.6"
}
}