-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.85 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.85 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "speedyguesser",
"version": "0.1.0",
"description": "Game to be played by three people where two people have to make the third person guess as many words as possible by saying one word each",
"private": true,
"author": "Lorenzo Bandini",
"keywords": [
"game",
"words",
"friends"
],
"license": "MIT",
"type": "module",
"scripts": {
"build": "next build",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"dev": "next dev --turbopack",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.9.1",
"@prisma/client": "^6.9.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-visually-hidden": "^1.2.3",
"@t3-oss/env-nextjs": "^0.13.6",
"@tanstack/react-query": "^5.80.6",
"@trpc/client": "^11.3.1",
"@trpc/react-query": "^11.3.1",
"@trpc/server": "^11.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.4.2",
"input-otp": "^1.4.2",
"lucide-react": "^0.513.0",
"next": "^15.3.3",
"next-auth": "^4.24.11",
"next-pwa": "^5.6.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"server-only": "^0.0.1",
"superjson": "^2.2.2",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"web-push": "^3.6.7",
"zod": "^3.25.55"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.8",
"@types/eslint": "^9.6.1",
"@types/next-pwa": "^5.6.9",
"@types/node": "^22.15.30",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@types/web-push": "^3.6.4",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"eslint-config-next": "^15.3.3",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"postcss": "^8.5.4",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"prisma": "^6.9.0",
"tailwindcss": "^4.1.8",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"ct3aMetadata": {
"initVersion": "7.34.0"
},
"packageManager": "pnpm@9.7.0",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,html,json,md}": [
"prettier --write"
]
}
}