-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.11 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
{
"name": "start-kit.dev",
"version": "1.0.0",
"private": true,
"description": "Full-stack TypeScript SaaS starter kit built on TanStack Start, Bun, Drizzle, Better-Auth, and Stripe",
"license": "MIT",
"author": {
"name": "Carlos Ziegler",
"url": "https://github.com/CarlosZiegler"
},
"repository": {
"type": "git",
"url": "https://github.com/CarlosZiegler/start-kit.dev"
},
"homepage": "https://github.com/CarlosZiegler/start-kit.dev#readme",
"bugs": {
"url": "https://github.com/CarlosZiegler/start-kit.dev/issues"
},
"keywords": [
"saas",
"starter-kit",
"tanstack-start",
"tanstack",
"typescript",
"bun",
"drizzle",
"better-auth",
"stripe",
"orpc",
"react",
"fullstack"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.8.1",
"turbo": "^2.8.17",
"typescript": "5.9.3"
},
"engines": {
"bun": ">=1.0.0"
},
"packageManager": "bun@1.3.4",
"workspaces": [
"apps/*",
"packages/*"
]
}