-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 5.9 KB
/
package.json
File metadata and controls
160 lines (160 loc) · 5.9 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "tanstarter",
"version": "0.1.0",
"scripts": {
"build": "vite build",
"build-storybook": "storybook build",
"build:prod": "bun run build && bun run drizzle:migrate && bun run scripts/generate-sw.ts && bun run scripts/post-build.ts",
"check": "turbo lint check-types check-stories test:unit test-storybook test:e2e",
"check-stories": "bun scripts/check-component-coverage.cjs --quiet",
"check-types": "tsc --noEmit",
"compile": "lingui compile",
"db": "drizzle-kit",
"deps": "ncu --interactive --format group",
"dev": "bun run docker:up && sh scripts/wait-for.sh && turbo dev:vite storybook --ui=tui",
"dev:install": "bun install",
"dev:vite": "vite dev --port 3000",
"docker:up": "docker compose --env-file .env up -d --remove-orphans",
"drizzle:data": "bun run drizzle:migrate && bun run drizzle:seed",
"drizzle:generate": "dotenv -e ./.env drizzle-kit generate",
"drizzle:migrate": "bun ./src/server/db/migrate.ts",
"drizzle:reseed": "docker compose down -v && bun run docker:up -d && sh scripts/wait-for.sh && bun run drizzle:generate && bun run drizzle:migrate && bun run drizzle:seed",
"drizzle:seed": "bun --env-file=.env ./src/server/db/seed.ts",
"drizzle:studio": "bunx drizzle-kit studio",
"extract": "lingui extract",
"fix": "fixpack",
"lint": "biome check --fix --unsafe",
"prepare": "lefthook install",
"start": "bun run .output/server/index.mjs",
"storybook": "storybook dev -p 6006 --no-open",
"test-storybook": "vitest run --project storybook",
"test-storybook:watch": "vitest --project storybook",
"test:e2e": "cross-env CI=false playwright test",
"test:e2e:admin": "playwright test --project=admin",
"test:e2e:codegen": "playwright codegen http://localhost:3000",
"test:e2e:debug": "playwright test --debug",
"test:e2e:member": "playwright test --project=member",
"test:e2e:report": "bunx playwright show-report playwright/report --host 127.0.0.1 --port 9323",
"test:e2e:ui": "playwright test --ui",
"test:unit": "cross-env NODE_ENV=test dotenv -o -e .env.test.local -e .env.test -- bunx vitest run --config vitest.unit.config.ts",
"test:unit:coverage": "cross-env NODE_ENV=test dotenv -e .env.test.local -e .env.test -- vitest run --coverage --config vitest.unit.config.ts",
"test:unit:watch": "cross-env NODE_ENV=test dotenv -o -e .env.test.local -e .env.test -- vitest watch --config vitest.unit.config.ts",
"ui": "pnpm dlx shadcn@latest"
},
"dependencies": {
"@axiomhq/js": "^1.3.1",
"@base-ui/react": "^1.0.0",
"@better-auth/drizzle-adapter": "https://pkg.pr.new/better-auth/better-auth/@better-auth/drizzle-adapter@6913",
"@casl/ability": "^6.7.5",
"@enalmada/start-secure": "^1.0.2",
"@enalmada/start-streaming": "^2.0.0",
"@lingui/babel-plugin-lingui-macro": "^5.7.0",
"@lingui/cli": "^5.7.0",
"@lingui/core": "5.7.0",
"@lingui/macro": "^5.7.0",
"@lingui/react": "^5.7.0",
"@neondatabase/serverless": "^1.0.2",
"@react-email/components": "^1.0.4",
"@react-email/render": "^2.0.2",
"@react-email/tailwind": "^2.0.3",
"@rollbar/react": "^1.0.0",
"@tanstack/react-form": "^1.27.7",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-router": "^1.147.3",
"@tanstack/react-router-ssr-query": "^1.147.3",
"@tanstack/react-start": "^1.149.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/start-storage-context": "^1.147.1",
"@unpic/react": "^1.0.2",
"@vitejs/plugin-react": "^5.1.2",
"better-auth": "1.4.10",
"better-sse": "^0.16.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^1.0.0-beta.10-42c284e",
"drizzle-valibot": "^0.4.2",
"envin": "^1.1.12",
"lucide-react": "^0.562.0",
"nanoid": "^5.1.6",
"nitro": "npm:nitro-nightly@latest",
"postgres": "^3.4.8",
"posthog-js": "^1.318.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-email": "^5.2.1",
"react-error-boundary": "^6.0.3",
"rollbar": "^2.26.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"unenv": "^1.10.0",
"valibot": "^1.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@lingui/loader": "^5.7.0",
"@lingui/vite-plugin": "^5.7.0",
"@playwright/test": "^1.57.0",
"@serwist/build": "^9.5.0",
"@serwist/vite": "^9.5.0",
"@serwist/window": "^9.5.0",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-coverage": "^3.0.0",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "^10.1.11",
"@storybook/addon-themes": "^10.1.11",
"@storybook/addon-vitest": "^10.1.11",
"@storybook/react": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@storybook/test-runner": "^0.24.2",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.9.2",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/router-devtools": "^1.149.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/dotenv": "^8.2.3",
"@types/node": "^25.0.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitest/browser": "^4.0.16",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "4.0.16",
"autoprefixer": "^10.4.23",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "10.1.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^1.0.0-beta.10-42c284e",
"globals": "^17.0.0",
"happy-dom": "^20.1.0",
"lefthook": "^2.0.13",
"npm-check-updates": "^19.3.1",
"serwist": "^9.5.0",
"storybook": "^10.1.11",
"tailwindcss": "^4.1.18",
"turbo": "^2.7.3",
"typescript": "^5.9.3",
"vite": "^8.0.0-beta.7",
"vite-plugin-rollbar": "^0.0.14",
"vitest": "^4.0.16"
},
"description": "production ready boilerplate for Tanstack Starter",
"private": true,
"main": "",
"packageManager": "bun@1.3.5",
"trustedDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"@swc/core",
"@tailwindcss/oxide",
"bufferutil",
"core-js",
"esbuild",
"lefthook",
"sharp"
],
"type": "module"
}