-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.91 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
{
"name": "walkingpad",
"private": true,
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node .output/server/index.mjs",
"lint": "oxlint --type-aware --type-check",
"lint:fix": "oxlint --type-aware --type-check --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "npm format && npm lint",
"prepare": "husky",
"db": "drizzle-kit",
"deps": "npx taze@latest -Ilw",
"deps:major": "npx taze@latest major -Ilw",
"tanstack": "npx @tanstack/cli@latest",
"ui": "npx shadcn@latest",
"auth": "npx auth@latest",
"auth:secret": "npx auth@latest secret",
"auth:generate": "npx auth@latest generate --config ./src/lib/auth/auth.ts --y --output ./src/lib/db/schema/auth.schema.ts",
"auth:migrate": "npm run auth:generate && npm run db generate && npm run db migrate",
"skills": "npx skills@latest",
"intent": "npx @tanstack/intent@latest"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@better-auth/drizzle-adapter": "^1.5.5",
"@fontsource-variable/dm-sans": "^5.2.8",
"@remixicon/react": "^4.9.0",
"@t3-oss/env-core": "^0.13.10",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.167.4",
"@tanstack/react-router-ssr-query": "^1.166.9",
"@tanstack/react-start": "^1.166.16",
"better-auth": "^1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"postgres": "^3.4.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@abandonware/noble": "^1.9.2-26",
"@babel/core": "^7.29.0",
"@rolldown/plugin-babel": "^0.2.1",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/devtools-a11y": "^0.1.2",
"@tanstack/devtools-vite": "^0.6.0",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@tanstack/eslint-plugin-router": "^1.161.6",
"@tanstack/react-devtools": "^0.10.0",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router-devtools": "^1.166.9",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/web-bluetooth": "^0.0.21",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.10",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "9.1.7",
"lint-staged": "^16.4.0",
"nitro": "^3.0.260311-beta",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.0",
"shadcn": "^4.1.2",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^8.0.0"
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"generator": "create-mugnavo"
}