Skip to content

Commit

Permalink
init: commit after copying eluvio demo as a starting point
Browse files Browse the repository at this point in the history
  • Loading branch information
kespinola committed Apr 18, 2023
0 parents commit a3c6ade
Show file tree
Hide file tree
Showing 53 changed files with 31,239 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}
50 changes: 50 additions & 0 deletions @types/graphql.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@

declare module '*/customer.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const CreateCustomer: DocumentNode;
export const CreateCustomerWallet: DocumentNode;
export const GetCustomerWallet: DocumentNode;

export default defaultDocument;
}


declare module '*/drop.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const MintNft: DocumentNode;
export const GetDrops: DocumentNode;
export const GetDrop: DocumentNode;

export default defaultDocument;
}


declare module '*/key.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const ForgeKey: DocumentNode;

export default defaultDocument;
}


declare module '*/me.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const GetMe: DocumentNode;

export default defaultDocument;
}


declare module '*/project.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const GetProjectDrop: DocumentNode;
export const GetProjectDrops: DocumentNode;

export default defaultDocument;
}

Loading

0 comments on commit a3c6ade

Please sign in to comment.