-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
{
"name": "react-apollo-cache-join-example",
"version": "0.0.2",
"author": "",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"generate": "yarn generate:prisma && yarn generate:nexus && yarn codegen",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --transpile-only -P nexus.tsconfig.json src/Api/nexusSchema",
"codegen": "graphql-codegen --config codegen.yml",
"create-migration": "prisma migrate dev --preview-feature",
"migrate-database": "prisma db push --preview-feature"
},
"dependencies": {
"@apollo/client": "3.3.7",
"@apollo/react-ssr": "4.0.0",
"@material-ui/core": "^4.11.3",
"@paljs/admin": "2.11.1",
"@paljs/icons": "1.0.4",
"@paljs/nexus": "2.11.1",
"@paljs/ui": "1.0.4",
"@prisma/client": "2.15.0",
"apollo-server-micro": "2.19.2",
"bcryptjs": "2.4.3",
"cookie": "0.4.1",
"faker": "^5.2.0",
"graphql": "14.7.0",
"graphql-tag": "2.11.0",
"graphql-tools": "7.0.2",
"jsonwebtoken": "8.5.1",
"lodash": "^4.17.20",
"next": "10.0.5",
"nexus": "1.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"styled-components": "5.2.1",
"ts-node": "8.10.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.20.1",
"@graphql-codegen/typescript": "1.20.2",
"@graphql-codegen/typescript-operations": "1.17.14",
"@graphql-codegen/typescript-react-apollo": "1.17.8-alpha-f207402d.0",
"@prisma/cli": "2.15.0",
"@types/bcryptjs": "2.4.2",
"@types/cookie": "0.4.0",
"@types/faker": "^5.1.5",
"@types/graphql": "14.5.0",
"@types/jsonwebtoken": "8.5.0",
"@types/lodash": "^4.14.168",
"@types/node": "14.14.22",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/styled-components": "4.4.3",
"@typescript-eslint/eslint-plugin": "3.10.2-alpha.16",
"@typescript-eslint/parser": "3.10.2-alpha.16",
"babel-plugin-graphql-tag": "2.5.0",
"babel-plugin-styled-components": "1.12.0",
"codesandbox": "^2.2.1",
"eslint": "7.18.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"husky": "4.3.8",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --pattern \"**/*.*(ts|tsx|graphql)\" --staged"
}
},
"cacheDirectories": [
".next/cache"
],
"repository": "",
"description": ""
}