-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
66
67
68
69
70
71
{
"name": "prisma-next-auth-graphql-starter",
"version": "3.1.3",
"description": "",
"scripts": {
"start": "next start",
"dev": "next",
"build": "next build",
"studio": "npx prisma studio",
"generate": "npm -s run generate:prisma && npm -s run generate:nexus",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --transpile-only -P nexus.tsconfig.json src/graphql/schema",
"lint": "next lint",
"postinstall": "npm run generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"keywords": [
"prisma",
"starter",
"fullstack",
"auth"
],
"author": "Taras Protchenko",
"license": "MIT",
"dependencies": {
"@apollo/client": "3.6.1",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "3.13.0",
"@tailwindcss/forms": "0.5.0",
"@tailwindcss/typography": "0.5.2",
"apollo-server-micro": "3.6.7",
"graphql": "15.8.0",
"graphql-middleware": "6.0.9",
"graphql-scalars": "1.17.0",
"graphql-shield": "7.5.0",
"micro": "9.3.4",
"micro-cors": "0.1.1",
"next": "12.1.5",
"next-auth": "4.3.4",
"nexus": "1.3.0",
"nodemailer": "^6.7.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "3.0.24"
},
"devDependencies": {
"@types/next-auth": "3.15.0",
"@types/node": "17.0.30",
"@types/react": "17.0.44",
"@types/react-dom": "17.0.16",
"autoprefixer": "10.4.5",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"husky": "7.0.4",
"lint-staged": "12.4.1",
"postcss": "8.4.31",
"prettier": "2.6.2",
"prisma": "3.13.0",
"ts-node": "10.7.0",
"typescript": "4.6.4"
}
}