-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json.bak
More file actions
174 lines (174 loc) · 4.92 KB
/
Copy pathpackage.json.bak
File metadata and controls
174 lines (174 loc) · 4.92 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "nextjs-solid-boilerplate",
"version": "1.0.0",
"description": "Modern Next.js boilerplate with SOLID architecture principles and MCP integrations",
"private": true,
"scripts": {
"setup": "node scripts/setup-all.js",
"setup:basic": "node scripts/setup.js",
"setup:mcp": "node scripts/setup-mcp.js",
"setup:spec-kit": "node scripts/setup-spec-kit.js",
"setup:husky": "node scripts/setup-husky.js",
"setup:auth": "npm install zod @hookform/resolvers react-hook-form next-auth",
"setup:database": "npm install prisma @prisma/client zod",
"setup:supabase": "npm install @supabase/supabase-js zod",
"setup:stripe": "npm install stripe @stripe/stripe-js zod",
"setup:animations": "npm install framer-motion",
"setup:query": "npm install @tanstack/react-query",
"setup:stores": "npm install zustand",
"setup:hooks": "node scripts/setup-hooks.js",
"generate:feature": "node scripts/generate-feature.js",
"generate:module": "node scripts/modules/generate-module.js",
"modules": "node scripts/modules/cli.js",
"modules:list": "node scripts/modules/cli.js list",
"modules:search": "node scripts/modules/cli.js search",
"modules:sync": "node scripts/modules/cli.js sync",
"modules:validate": "node scripts/modules/cli.js validate",
"modules:metrics": "node scripts/modules/cli.js metrics",
"modules:suggest": "node scripts/modules/suggestions.js",
"modules:index": "node scripts/modules/discover.js index",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"pre-commit": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:install": "playwright install"
},
"dependencies": {
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.4.0",
"@types/node": "^20.12.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.3.0",
"lucide-react": "^0.379.0",
"@radix-ui/react-slot": "^1.0.2",
"next-themes": "^0.3.0",
"zod": "^3.23.0"
},
"peerDependencies": {
"@hookform/resolvers": "^3.3.0",
"react-hook-form": "^7.51.0",
"@next-auth/prisma-adapter": "^1.0.7",
"next-auth": "^4.24.0",
"@supabase/supabase-js": "^2.45.0",
"stripe": "^16.8.0",
"@stripe/stripe-js": "^4.4.0",
"prisma": "^5.20.0",
"@prisma/client": "^5.20.0",
"@tanstack/react-query": "^5.55.0",
"framer-motion": "^11.5.0",
"zustand": "^5.0.0"
},
"peerDependenciesMeta": {
"@hookform/resolvers": {
"optional": true
},
"react-hook-form": {
"optional": true
},
"@next-auth/prisma-adapter": {
"optional": true
},
"next-auth": {
"optional": true
},
"@supabase/supabase-js": {
"optional": true
},
"stripe": {
"optional": true
},
"@stripe/stripe-js": {
"optional": true
},
"prisma": {
"optional": true
},
"@prisma/client": {
"optional": true
},
"@tanstack/react-query": {
"optional": true
},
"framer-motion": {
"optional": true
},
"zustand": {
"optional": true
}
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"prettier": "^3.2.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"@types/jest": "^29.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"@testing-library/react": "^15.0.0",
"@testing-library/jest-dom": "^6.4.0",
"@playwright/test": "^1.40.0",
"eslint-plugin-import": "^2.29.0",
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"commander": "^11.1.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"pnpm": ">=8.0.0",
"yarn": ">=3.0.0"
},
"packageManager": "pnpm@8.15.0",
"keywords": [
"nextjs",
"react",
"typescript",
"tailwindcss",
"shadcn-ui",
"solid-principles",
"boilerplate",
"template",
"mcp"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,md,css,scss}": [
"prettier --write"
]
}
}