-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.78 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
{
"name": "typescript-prisma-graphql",
"version": "1.0.0",
"description": "hello 3",
"main": "index.js",
"license": "ISC",
"private": true,
"scripts": {
"dev": "run-p codegen:watch next:dev",
"db:setup": "yarn prisma db push",
"next:dev": "PORT=\"${PORT:-4040}\" && next dev -p $PORT",
"build": "./.scripts/build-assets && yarn prisma generate && yarn codegen && next build",
"lint": "prettier --config .prettierrc 'src/**/*.graphql' 'src/**/*.ts' --check",
"lint:fix": "prettier --config .prettierrc 'src/**/*.graphql' 'src/**/*.ts' --write",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "graphql-codegen --config codegen.yml -w",
"postinstall": "run-s postinstall:database postinstall:assets",
"postinstall:database": "./.scripts/postinstall-database",
"postinstall:assets": "./.scripts/postinstall-dotenv",
"prepare": "husky install"
},
"devDependencies": {
"@anglinb/graphql-codegen-apollo-next-ssr": "^1.6.2",
"@graphql-codegen/cli": "1.21.5",
"@graphql-codegen/import-types-preset": "^1.18.5",
"@graphql-codegen/introspection": "^1.18.2",
"@graphql-codegen/typescript": "1.22.3",
"@graphql-codegen/typescript-operations": "^1.18.3",
"@graphql-codegen/typescript-react-apollo": "^2.3.0",
"@graphql-codegen/typescript-resolvers": "^1.19.4",
"@graphql-tools/webpack-loader": "^6.4.0",
"@types/chrome": "^0.0.145",
"@types/cookie": "^0.4.0",
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.170",
"@types/pg": "^8.6.0",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@types/webpack-env": "^1.16.0",
"autoprefixer": "^10.2.6",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"concurrently": "^6.2.0",
"husky": "^7.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"sharp": "^0.28.3",
"tailwindcss": "^2.2.4",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@apollo/client": "^3.3.20",
"@headlessui/react": "^1.3.0",
"@next-auth/prisma-adapter": "^0.5.2",
"@prisma/client": "2.26.0",
"@tailwindcss/forms": "^0.3.3",
"apollo-server": "^2.25.2",
"apollo-server-micro": "^2.25.2",
"babel-plugin-superjson-next": "^0.3.0",
"cookie": "^0.4.1",
"graphql": "^15.5.1",
"lodash": "^4.17.21",
"micro-cookie": "^1.2.0",
"mysql": "^2.18.1",
"next": "^11.0.1",
"next-auth": "^3.27.1",
"pg": "^8.6.0",
"prisma": "2.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-loading-skeleton": "^2.2.0",
"superjson": "^1.7.4"
}
}