-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.95 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
{
"name": "w3oas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"console": "dotenv -e .env.local -- hasura console --project hasura",
"export:schema": "dotenv -e .env.local -- cross-var gq http://localhost:8080/v1/graphql -H \"X-Hasura-Admin-Secret: %HASURA_GRAPHQL_ADMIN_SECRET%\" --introspect > graphql/schema.graphql",
"generate": "graphql-codegen --config codegen.yml",
"apply:metadata": "dotenv -e .env.local -v NODE_OPTIONS=null -- cross-var hasura metadata apply --project hasura",
"apply:migration": "dotenv -e .env.local -v NODE_OPTIONS=null -- cross-var hasura migrate apply --all-databases --project hasura"
},
"dependencies": {
"@apollo/client": "^3.6.0-rc.1",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@web3auth/web3auth": "^0.9.3",
"defender-relay-client": "^1.21.2",
"discord-api-types": "^0.32.0",
"ethers": "^5.6.4",
"framer-motion": "^6.3.0",
"graphql": "^16.3.0",
"jsonwebtoken": "^8.5.1",
"next": "12.1.5",
"next-auth": "^4.3.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-error-boundary": "^3.1.4",
"react-toastify": "^9.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-operations": "2.3.5",
"@graphql-codegen/typescript-react-apollo": "3.2.11",
"@types/node": "17.0.25",
"@types/react": "18.0.5",
"@types/react-dom": "18.0.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"cross-var": "^1.1.0",
"dotenv-cli": "^5.1.0",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2",
"typescript": "^4.5.5"
}
}