-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name": "esmate-react-next",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": "https://github.com/viendinhcom/esmate",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"fix": "esmate task fix",
"check": "esmate task check",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate"
},
"tasks": {
"fix": [
"esmate fmt",
"esmate lint --fix"
],
"check": [
"esmate fmt --check",
"esmate lint"
]
},
"dependencies": {
"@better-auth/stripe": "^1.4.7",
"@esmate/shadcn": "^3.5.3",
"@esmate/utils": "^1.2.1",
"@t3-oss/env-nextjs": "^0.13.10",
"better-auth": "^1.4.7",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"next": "^16.1.0",
"postgres": "^3.4.7",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"stripe": "^20.1.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@esmate/prettier": "^1.0.6",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.8",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.0",
"esmate": "^2.1.4",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"postcss": {
"plugins": [
"@tailwindcss/postcss"
]
}
}