generated from MileTwo/nextjs-typescript-material-ui-eslint-jest
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
102 lines (102 loc) · 3.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nextjs-ts-auto-graphql",
"version": "1.0.0",
"private": false,
"dependencies": {
"@apollo/client": "^3.7.17",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@graphql-tools/schema": "^10.0.0",
"@mui/material": "^5.13.7",
"@prisma/client": "4.16.2",
"@types/graphql-fields": "^1.3.5",
"graphql": "^15.8.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.22.2",
"graphql-yoga": "^4.0.3",
"jest-environment-jsdom": "^29.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.1",
"type-graphql": "^1.1.1"
},
"keywords": [
"Next.js",
"GraphQL",
"TypeScript",
"Prisma",
"Apollo",
"ESLint",
"Prettier",
"React",
"React Hook Form",
"Jest",
"Testing Library React",
"Material-UI"
],
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"build": "next build && tsc",
"deploy": "prisma migrate deploy",
"dev": "prisma generate && concurrently \"npm run server-dev\" \"npm run watch-queries\"",
"format": "prisma format && prettier --write . && eslint --fix .",
"generate": "prisma generate",
"generate-types": "graphql-codegen --config codegen.yml",
"lint": "next lint",
"migrate": "prisma migrate dev",
"postinstall": "prisma generate",
"prisma": "prisma format && npm run migrate && npm run seed",
"quality": "npm install --silent && npm run type-check && npm run lint && npm run test",
"reset": "prisma migrate reset",
"seed": "prisma db seed",
"server-dev": "next",
"start": "next start",
"studio": "prisma studio",
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --watch --preserveWatchOutput",
"update-deps": "npx npm-check-updates -i",
"watch-queries": "graphql-codegen --config codegen.yml --watch"
},
"devDependencies": {
"@axe-core/react": "^4.7.3",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/fragment-matcher": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@next/eslint-plugin-next": "^13.4.9",
"@swc/core": "^1.3.68",
"@swc/helpers": "^0.5.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.4.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"next": "^13.4.9",
"prettier": "^3.0.0",
"prisma": "4.16.2",
"prisma-erd-generator": "^1.6.2",
"ts-node": "^10.9.1",
"typegraphql-prisma": "^0.26.0",
"typescript": "^5.1.6"
}
}