generated from wangel13/prisma-next-auth-graphql-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
72
73
74
75
76
{
"name": "story-bible",
"version": "1.0.2",
"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": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"postinstall": "npm run generate"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"keywords": [
"prisma",
"starter",
"fullstack",
"auth"
],
"author": "Jarrod Medrano",
"license": "ISC",
"dependencies": {
"@apollo/client": "3.3.4",
"@nexus/schema": "0.19.2",
"antd": "^4.12.2",
"apollo-server-micro": "2.19.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"cloudinary-react": "^1.7.0",
"graphql": "15.4.0",
"graphql-iso-date": "3.6.1",
"graphql-middleware": "4.0.2",
"graphql-shield": "7.4.3",
"next": "10.0.3",
"next-auth": "3.5.0",
"nexus-plugin-prisma": "^0.31.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.2"
},
"devDependencies": {
"@prisma/cli": "2.13.1",
"@prisma/client": "^2.17.0",
"@types/next-auth": "3.1.18",
"@types/node": "14.14.10",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"eslint": "7.15.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-prettier": "3.2.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.5",
"lint-staged": "10.5.3",
"nexus": "^1.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.2.1",
"prettier-plugin-prisma": "^0.4.0",
"ts-node": "9.1.0",
"typescript": "4.1.2"
}
}