-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 KB
/
package.json
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
{
"name": "fnotify",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"connect:main": "pscale connect fnotify main --port 3309",
"connect:shadow": "pscale connect fnotify shadow --port 3310"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.1.6",
"@prisma/client": "^4.9.0",
"@radix-ui/react-dialog": "^1.0.2",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@upstash/ratelimit": "^0.3.2",
"@upstash/redis": "^1.20.0",
"@vercel/analytics": "^0.1.8",
"@vercel/og": "^0.1.0",
"clsx": "^1.2.1",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"nanoid": "^4.0.0",
"next": "latest",
"next-auth": "^4.19.0",
"next-connect": "^0.13.0",
"next-themes": "npm:@wits/next-themes",
"prettier-plugin-tailwindcss": "^0.2.2",
"prisma": "^4.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-use": "^17.4.0",
"request-ip": "^3.3.0",
"swr": "^2.0.3",
"typescript": "4.9.5",
"web-push": "^3.5.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"@types/request-ip": "^0.0.37",
"@types/serviceworker": "^0.0.62",
"@types/web-push": "^3.3.2",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import-helpers": "^1.3.1",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"tsx": "^3.12.2",
"vitest": "^0.28.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}