-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "unifiedbox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"prisma:gen": "prisma generate",
"prisma:dev": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"format": "prettier --write ."
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@prisma/client": "^6.18.0",
"@tanstack/react-query": "^5.90.6",
"better-auth": "^1.3.34",
"dotenv": "^17.2.3",
"next": "16.0.1",
"next-themes": "^0.4.6",
"prisma": "^6.18.0",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"twilio": "^5.10.4",
"zod": "^4.1.12"
},
"devDependencies": {
"@better-auth/cli": "^1.3.34",
"@tailwindcss/postcss": "^4",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9.39.0",
"eslint-config-next": "^16.0.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}