-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.92 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "survey-chain",
"description": "An application for performing transparent and verifiable surveys",
"version": "0.1.0",
"private": true,
"author": "Ben Schwartz <schwartz.ben0@gmail.com> (@bmschwartz)",
"license": "MIT",
"keywords": [
"web3",
"ethereum"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "prisma generate",
"graphql-codegen": "graphql-codegen",
"watch-codegen": "graphql-codegen -w"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"eslintIgnore": [
"src/graphql/__generated__"
],
"dependencies": {
"@apollo/client": "3.11.8",
"@apollo/server": "4.11.0",
"@as-integrations/next": "3.1.0",
"@auth/prisma-adapter": "2.4.2",
"@clerk/nextjs": "5.3.7",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@fontsource/roboto": "5.0.14",
"@graphql-tools/schema": "10.0.6",
"@hookform/resolvers": "3.9.0",
"@mui/icons-material": "6.0.0",
"@mui/material": "6.0.0",
"@mui/styles": "6.0.0",
"@prisma/client": "5.19.1",
"@tanstack/react-query": "5.56.2",
"bcryptjs": "2.4.3",
"graphql-tag": "2.12.6",
"lodash": "4.17.21",
"next": "14.2.6",
"next-auth": "5.0.0-beta.20",
"pnpm": "9.10.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.0",
"siwe": "2.3.2",
"swr": "2.2.5",
"viem": "2.21.10",
"wagmi": "2.12.12",
"zod": "3.23.8"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.3.3",
"@graphql-typed-document-node/core": "3.2.0",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@parcel/watcher": "2.4.1",
"@types/bcryptjs": "2.4.6",
"@types/lodash": "4.17.7",
"@types/node": "20.16.1",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.6",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.2.1",
"graphql": "16.9.0",
"hardhat": "2.22.10",
"husky": "9.1.5",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"prettier-plugin-sort-json": "4.0.0",
"prisma": "5.19.1",
"typescript": "5.5.4"
}
}