-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "space.hackability",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"codegen": "graphql-codegen --config codegen.yml",
"db:generate": "yarn pgtyped -c pgtyped.config.js"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@pgtyped/cli": "^0.10.2",
"@pgtyped/query": "^0.10.2",
"apollo-server-micro": "^2.21.0",
"graphql": "^15.5.0",
"next": "10.0.6",
"pg": "^8.5.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.1",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typed-document-node": "^1.18.2",
"@graphql-codegen/typescript": "1.21.0",
"@graphql-codegen/typescript-operations": "^1.17.14",
"@types/node": "^14.14.27",
"@types/pg": "^7.14.11",
"@types/react": "^17.0.2",
"autoprefixer": "^10.2.5",
"postcss": "^8.2.7",
"tailwindcss": "^2.0.3"
}
}