-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "tinder__nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma db push && next build",
"postinstall": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.1",
"@next-auth/prisma-adapter": "^0.4.4-canary.81",
"@prisma/client": "^5.0.0",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"next": "13.4.10",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"remove": "^0.1.5",
"superjson": "^1.13.1",
"swr": "^2.2.0"
},
"devDependencies": {
"autoprefixer": "10.4.14",
"babel-plugin-superjson-next": "^0.4.5",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.0.0-canary-7118f5dd7-20230705",
"node-fetch": "^2.6.12",
"postcss": "8.4.26",
"prettier": "3.0.0",
"prisma": "^5.0.0",
"tailwindcss": "3.3.3"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}