-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.44 KB
/
package.json
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
{
"name": "nextjs-typescript-saas",
"description": "Next.js TypeScript SaaS Starter",
"version": "1.0.0",
"author": "Jitendra Nirnejak <[email protected]>",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,mdx}\"",
"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": {
"@auth/drizzle-adapter": "^1.8.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@neondatabase/serverless": "^1.0.0",
"@next/mdx": "^15.3.0",
"akar-icons": "^1.9.31",
"class-variance-authority": "^0.7.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.42.0",
"motion": "^12.7.3",
"next": "^15.3.0",
"next-auth": "^5.0.0-beta.25",
"next-view-transitions": "^0.3.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sharp": "^0.34.1",
"sonner": "^2.0.3",
"use-sound": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/typography": "^0.5.16",
"@types/mdx": "^2.0.13",
"@types/node": "^22.14.1",
"@types/react": "^19.1.2",
"drizzle-kit": "^0.31.0",
"eslint": "^9.24.0",
"eslint-config-love": "^119.0.0",
"eslint-config-next": "^15.3.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"shiki": "^3.2.2",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"volta": {
"node": "22.14.0"
},
"keywords": [
"nextjs",
"react",
"typescript",
"eslint",
"prettier",
"precommit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nirnejak/nextjs-typescript-saas"
},
"bugs": {
"url": "https://github.com/nirnejak/nextjs-typescript-saas/issues"
}
}