-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.04 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
{
"name": "nextjs-typescript-saas",
"version": "1.0.0",
"description": "Next.js TypeScript SaaS Starter",
"keywords": [
"nextjs",
"oxfmt",
"oxlint",
"precommit",
"react",
"typescript"
],
"bugs": {
"url": "https://github.com/nirnejak/nextjs-typescript-saas/issues"
},
"license": "MIT",
"author": "Jitendra Nirnejak <jeetnirnejak@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/nirnejak/nextjs-typescript-saas"
},
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"type-check": "tsc --pretty --noEmit",
"prepare": "husky",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@neondatabase/serverless": "^1.1.0",
"@next/mdx": "^16.3.5",
"akar-icons": "^1.9.31",
"better-auth": "^1.7.5",
"class-variance-authority": "^0.7.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"motion": "^13.4.0",
"next": "^16.3.5",
"next-view-transitions": "^0.3.5",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"sharp": "^0.35.4",
"sonner": "^2.0.8",
"use-sound": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@types/mdx": "^2.0.14",
"@types/node": "^22.20.3",
"@types/react": "^19.3.0",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"lint-staged": "^17.5.1",
"oxfmt": "^0.68.0",
"oxlint": "^1.83.0",
"shiki": "^4.4.3",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxlint --fix",
"oxfmt"
],
"*.json": "oxfmt"
},
"volta": {
"node": "24.14.0"
}
}