-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.61 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.61 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
{
"name": "starter-saas",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.24.0",
"description": "starter saas app",
"author": "Brendan Dash <me@aiwna.run> (https://github.com/Debbl/)",
"license": "MIT",
"homepage": "https://github.com/Debbl/starter-saas",
"repository": {
"type": "git",
"url": "https://github.com/Debbl/starter-saas"
},
"scripts": {
"dev": "next dev --webpack",
"i18n:extract": "lingui extract",
"build": "next build --webpack",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"build:analyze": "ANALYZE=true next build",
"start": "next start --webpack",
"typecheck": "next typegen && tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@debbl/ahooks": "^0.4.1",
"@lingui/core": "^5.6.1",
"@lingui/react": "^5.6.1",
"@opennextjs/cloudflare": "^1.14.3",
"@orpc/client": "^1.12.2",
"@orpc/server": "^1.12.2",
"@orpc/tanstack-query": "^1.12.2",
"@serwist/next": "^9.2.3",
"@t3-oss/env-core": "^0.13.8",
"@tanstack/react-query": "^5.90.12",
"better-auth": "^1.4.5",
"better-sqlite3": "^12.5.0",
"class-variance-authority": "^0.7.1",
"drizzle-orm": "^0.44.7",
"lucide-react": "^0.555.0",
"motion": "12.6.2",
"next": "^16.0.7",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tailwindcss-animate": "^1.0.7",
"twl": "0.0.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@debbl/eslint-config": "^3.14.3",
"@lingui/cli": "^5.6.1",
"@lingui/loader": "^5.6.1",
"@lingui/swc-plugin": "^5.6.1",
"@next/bundle-analyzer": "^16.0.7",
"@tailwindcss/postcss": "^4.1.17",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.7",
"eslint": "^9.39.1",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier-plugin-tailwindcss": "^0.7.2",
"serwist": "^9.2.3",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"unplugin-auto-import": "^20.3.0",
"wrangler": "^4.52.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}