-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.55 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
{
"name": "next-starter",
"version": "0.1.0",
"private": true,
"prisma": {
"schema": "src/db/prisma/schema.prisma"
},
"scripts": {
"build": "next build",
"dev": "next",
"start:dev": "TAILWIND_MODE=watch concurrently -r \"next\" \"yarn watch:graphql-codegen\"",
"start:test": "NODE_ENV=test next",
"start:prod": "next start",
"generate": "yarn generate:prisma && yarn generate:nexus && yarn generate:graphql-codegen",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --transpile-only -P nexus.tsconfig.json -r tsconfig-paths/register src/server/graphql/schema.ts",
"generate:graphql-codegen": "graphql-codegen",
"lint": "eslint --ext js,jsx,ts,tsx",
"migrate:dev": "prisma migrate dev",
"seed:dev": "prisma db seed --preview-feature",
"stripe-listen": "stripe listen --forward-to localhost:3000/api/webhooks",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"watch:graphql-codegen": "yarn wait-on http://localhost:3000 && graphql-codegen --watch",
"test:server": "echo 'not yet implemented'",
"test:client": "cypress open"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@next-auth/prisma-adapter": "^1.0.5",
"@nexus/schema": "^0.20.1",
"@prisma/client": "3.1.1",
"@stripe/stripe-js": "^1.18.0",
"@tailwindcss/jit": "^0.1.18",
"@tailwindui/react": "^0.1.1",
"@types/classnames": "^2.3.1",
"@types/fbjs": "^3.0.2",
"@types/micro": "^7.3.6",
"@types/micro-cors": "^0.1.2",
"@types/mousetrap": "^1.6.8",
"@types/pino": "^6.3.11",
"apollo-errors": "^1.9.0",
"apollo-resolvers": "^1.4.2",
"apollo-server": "^3.3.0",
"apollo-server-micro": "^3.3.0",
"autoprefixer": "^10.3.6",
"classnames": "^2.3.1",
"concurrently": "^6.2.2",
"date-fns": "^2.24.0",
"graphql": "^15.6.0",
"graphql-middleware": "^6.1.7",
"graphql-shield": "^7.5.0",
"klona": "^2.0.4",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"moniker": "^0.1.2",
"mousetrap": "^1.6.5",
"next": "^13.1.5",
"next-auth": "^4.18.80",
"nexus": "^1.1.0",
"nexus-plugin-prisma": "^0.35.0",
"nexus-plugin-shield": "^0.2.0",
"nexus-shield": "^2.2.1",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"pino": "^6.13.3",
"postcss": "^8.3.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-modal-hook": "^3.0.2",
"reflect-metadata": "^0.1.13",
"stripe": "^8.178.0",
"superjson": "^1.12.2",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"type-graphql": "^1.1.1",
"urql": "^2.0.5",
"wait-on": "^7.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@graphql-codegen/typescript-operations": "2.1.5",
"@graphql-codegen/typescript-react-apollo": "3.1.4",
"@graphql-codegen/typescript-urql": "^3.2.0",
"@types/next-auth": "^3.15.0",
"@types/node": "^16.10.2",
"@types/react": "^17.0.26",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-plugin-superjson-next": "^0.4.1",
"cypress": "^8.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"prisma": "3.1.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
}
}