-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
executable file
·41 lines (41 loc) · 1022 Bytes
/
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
{
"name": "awesome-links",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@apollo/client": "3.7.4",
"@auth0/nextjs-auth0": "2.1.0",
"@pothos/core": "3.24.0",
"@pothos/plugin-prisma": "3.40.0",
"@pothos/plugin-relay": "3.32.0",
"@prisma/client": "^4.8.1",
"aws-sdk": "2.1295.0",
"graphql": "16.6.0",
"graphql-yoga": "3.3.0",
"next": "^13.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.42.1",
"react-hot-toast": "2.4.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"prisma": "^4.8.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
}
}