-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.59 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
103
104
105
106
107
108
109
110
111
{
"name": "next-app",
"version": "0.1.0",
"description": "Next.js & GraphQL boilerplate",
"license": "MIT",
"scripts": {
"build": "yarn run generate && next build",
"cypress:open": "cypress open",
"dev": "yarn run generate && next dev",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache --fix",
"generate:graphql-codegen": "graphql-codegen",
"generate:nexus": "cross-env GENERATE=true cross-env DOTENV_CONFIG_PATH=.env.example ts-node --require dotenv/config --transpile-only -P nexus.tsconfig.json src/server/graphql/schema.ts",
"generate:prisma": "prisma generate",
"generate": "yarn run generate:prisma && yarn run generate:nexus && yarn run generate:graphql-codegen",
"lint": "yarn run eslint . --ext .js,.jsx,.ts,.tsx",
"prisma:migrate": "yarn prisma migrate dev --preview-feature",
"prisma:studio": "prisma studio",
"start:ci": "INSECURE_AUTH=true yarn run start",
"start": "next start",
"test": "jest",
"typecheck:app": "tsc --noEmit",
"typecheck:cypress": "tsc --noEmit -p cypress/tsconfig.json",
"typecheck": "concurrently --raw yarn:typecheck:*"
},
"dependencies": {
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@prisma/client": "~2.23.0",
"@urql/exchange-graphcache": "^4.3.5",
"apollo-server-micro": "^2.25.1",
"cookie-session": "^1.4.0",
"dotenv": "^16.0.1",
"execa": "^5.1.1",
"framer-motion": "^4.1.17",
"graphql": "^15.6.1",
"next": "^10.2.3",
"next-connect": "^0.12.2",
"nexus": "^1.1.0",
"nexus-plugin-prisma": "~0.35.0",
"passport": "^0.5.0",
"passport-magic-login": "^1.0.9",
"postmark": "^2.7.8",
"raw-body": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"react-icons": "^4.3.1",
"slug": "^5.0.1",
"stripe": "^8.184.0",
"urql": "^2.0.5"
},
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.15.0",
"@graphql-codegen/cli": "^2.2.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.9",
"@graphql-codegen/plugin-helpers": "^1.18.7",
"@graphql-codegen/typed-document-node": "^2.1.6",
"@graphql-codegen/typescript": "^1.21.1",
"@graphql-codegen/typescript-operations": "^2.1.8",
"@graphql-codegen/typescript-urql": "^3.2.2",
"@stripe/stripe-js": "^1.20.3",
"@types/common-tags": "^1.8.1",
"@types/cookie-session": "^2.0.43",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.5",
"@types/passport": "^1.0.7",
"@types/react": "^18.0.8",
"@types/slug": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"common-tags": "^1.8.0",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"cypress": "^7.5.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.4.1",
"next-prisma-plugin": "~0.1.1",
"prettier": "^2.6.2",
"prisma": "~2.23.0",
"ts-node": "^10.9.1",
"typescript": "^4.4.4"
},
"jest": {
"setupFiles": [
"dotenv/config"
],
"setupFilesAfterEnv": [
"./src/test/jest-setup.ts"
],
"transform": {
"\\.tsx?$": [
"babel-jest",
{
"configFile": "./.babelrc.jest.js"
}
]
}
},
"prisma": {
"schema": "src/server/db/schema.prisma"
},
"packageManager": "[email protected]"
}