-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.28 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
{
"name": "awesome-links",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start"
},
"engines": {
"node": "^20.0.0",
"npm": "8.3.1"
},
"dependencies": {
"@apollo/client": "3.7.4",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.12.0",
"@types/next-auth": "^3.15.0",
"apollo-server-micro": "^3.12.0",
"aws-sdk": "2.1295.0",
"axios": "^1.3.4",
"cheerio": "^1.0.0-rc.12",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"graphql-yoga": "^3.3.0",
"micro": "^10.0.1",
"next": "^13.1.2",
"next-auth": "^4.20.1",
"nodemailer": "^6.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.42.1",
"react-hot-toast": "2.4.0",
"react-select": "^5.7.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"prisma": "^4.12.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
}
}