-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "fieldflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint app components features lib tests *.ts *.mjs",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:e2e": "playwright test",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:seed": "prisma db seed",
"db:studio": "prisma studio"
},
"dependencies": {
"@better-auth/prisma-adapter": "^1.6.27",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"better-auth": "^1.6.27",
"dotenv": "^17.4.2",
"lucide-react": "^1.31.0",
"next": "16.3.0",
"pg": "^8.23.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.21.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.3.0",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"prisma": "^7.9.1",
"tailwindcss": "^4",
"tsx": "^4.23.12",
"typescript": "^5"
}
}