-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.07 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.07 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nextjs-prisma-graphql-codegen-sample",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:eslint": "next lint",
"lint:prettier": "prettier --check .",
"format": "run-s format:prettier format:eslint",
"format:eslint": "yarn lint:eslint --fix",
"format:prettier": "yarn lint:prettier --write",
"typecheck": "tsc",
"codegen": "graphql-codegen",
"test": "vitest run"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@graphql-tools/graphql-file-loader": "^7.5.3",
"@graphql-tools/load": "^7.7.5",
"@graphql-tools/schema": "^9.0.2",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.2.1",
"apollo-server-micro": "^3.10.2",
"graphql": "^16.6.0",
"micro": "^9.4.1",
"micro-cors": "^0.1.1",
"next": "12.2.5",
"next-auth": "^4.10.3",
"nodemailer": "^6.7.8",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.11.8",
"@graphql-codegen/schema-ast": "^2.5.1",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-apollo": "^3.3.3",
"@graphql-codegen/typescript-resolvers": "^2.7.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/micro-cors": "^0.1.2",
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"jsdom": "^20.0.0",
"npm-run-all": "4.1.5",
"postcss": "^8.4.16",
"prettier": "2.7.1",
"prisma": "^4.2.1",
"tailwindcss": "^3.1.8",
"typescript": "4.8.2",
"vitest": "^0.22.1"
}
}