This repository has been archived by the owner on Dec 3, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "gita-frontend",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:gita/next-frontend.git",
"author": "Bhargav Ponnapalli <[email protected]>",
"license": "MIT",
"dependencies": {
"@graphql-codegen/schema-ast": "^1.18.1",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-relay": "^11.0.1",
"@types/relay-runtime": "^11.0.0",
"autoprefixer": "^10.2.5",
"next": "^10.1.3",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^7.0.0",
"postcss": "^8.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-no-ssr": "^1.1.0",
"react-relay": "^11.0.2",
"relay-compiler-language-typescript": "^14.0.0",
"relay-nextjs": "^0.3.0",
"relay-runtime": "^11.0.2",
"rooks": "^5.0.2-alpha.1",
"styled-components": "^5.3.0",
"tailwindcss": "^2.1.2",
"xwind": "^0.8.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"relay-compile": "relay-compiler --src ./src --schema ./schema.graphql --language typescript --artifactDirectory ./src/__generated__ --extensions js jsx ts tsx graphql.ts",
"generate:types": "graphql-codegen"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "1.21.3",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typescript": "1.21.1",
"@graphql-codegen/typescript-operations": "1.17.15",
"@graphql-codegen/typescript-react-apollo": "2.2.3",
"@types/react-no-ssr": "^1.1.1",
"babel-plugin-relay": "^11.0.2",
"graphql": "^15.5.0",
"prettier": "^2.2.1",
"relay-compiler": "^11.0.2",
"typescript": "^4.2.4",
"vscode-apollo-relay": "^1.5.1"
}
}