-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.78 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "web",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "next lint",
"lint:fix": "eslint --fix",
"type-check": "tsc --pretty --noEmit",
"graphql:generate": "graphql-codegen",
"cy:install": "cypress install",
"cy:run": "cypress run --browser chrome --e2e",
"cy:run:ci": "cypress run --browser chrome --e2e --record --key $CYPRESS_RECORD_KEY",
"cy:open": "cypress open --browser chrome --e2e",
"start:cli": "cross-env BROWSER=none next dev",
"test:e2e": "start-server-and-test start:cli http://localhost:3000 cy:open",
"test:e2e:run": "start-server-and-test dev http://localhost:3000 cy:run",
"test:e2e:run:ci": "start-server-and-test dev http://localhost:3000 cy:run:ci",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": "please-use-yarn",
"yarn": ">=1.22"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint"
]
},
"dependencies": {
"@desoc/contracts": "*",
"@ethersproject/experimental": "^5.7.0",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^2.9.7",
"@opengsn/provider": "^3.0.0-beta.1",
"@rainbow-me/rainbowkit": "^0.5.1",
"@reduxjs/toolkit": "^1.8.5",
"@supabase/supabase-js": "^2.0.4",
"@tanstack/react-query": "^4.20.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"busboy": "^1.6.0",
"ethers": "^5.0.0",
"flowbite": "^1.5.5",
"flowbite-react": "^0.3.7",
"formidable": "^2.0.1",
"graphql": "^16.6.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"msw": "^0.48.3",
"multiformats": "^9.8.1",
"next": "^12.1.6",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.2",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.34.2",
"react-icons": "^4.4.0",
"react-loader-spinner": "^5.3.3",
"react-quill": "^2.0.0",
"react-redux": "^8.0.2",
"redux-persist": "^6.0.0",
"wagmi": "^0.6.0",
"web3.storage": "^4.4.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@graphql-codegen/cli": "^2.16.1",
"@graphql-codegen/client-preset": "^1.2.3",
"@graphql-codegen/typescript": "^2.8.5",
"@graphql-codegen/typescript-react-query": "^4.0.6",
"@next/eslint-plugin-next": "^13.0.2",
"@testing-library/cypress": "^8.0.7",
"@types/busboy": "^1.5.0",
"@types/formidable": "^2.0.5",
"@types/jest": "^29.2.3",
"@types/node": "^17.0.35",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@types/redux-persist": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"autoprefixer": "^10.4.8",
"babel-jest": "^29.3.1",
"cross-env": "^7.0.3",
"cypress": "^11.1.0",
"cypress-hmr-restarter": "^2.0.4",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"mock-match-media": "^0.4.2",
"next-page-tester": "^0.33.0",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.3",
"typescript": "^4.7.2"
},
"resolutions": {
"ethereumjs-abi": "git+https://github.com/ethereumjs/ethereumjs-abi.git"
}
}