-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
101 lines (101 loc) · 3.07 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
{
"name": "application",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"lint-staged": "lint-staged",
"check": "biome check .",
"graphql-codegen": "graphql-codegen",
"codegen": "graphql-codegen --config codegen.ts",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"test:e2e:ci": "start-server-and-test start http://localhost:3000 test:e2e"
},
"dependencies": {
"@albedo-link/intent": "^0.12.0",
"@apollo/experimental-nextjs-app-support": "^0.11.6",
"@creit.tech/stellar-wallets-kit": "^1.2.3",
"@ethersproject/providers": "^5.7.2",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.9.0",
"@material-tailwind/react": "^2.1.10",
"@tanstack/react-query": "^5.61.0",
"@types/leaflet": "^1.9.14",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"ethers": "^6.13.4",
"firebase": "^11.0.2",
"flowbite-react": "^0.10.2",
"graphql": "^16.9.0",
"i18next": "^24.0.2",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"react": "^18.3.1",
"react-datepicker": "^7.5.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-hook-form": "^7.53.1",
"react-i18next": "^15.1.3",
"react-icons": "^5.3.0",
"react-leaflet": "^5.0.0-rc.1",
"react-router-dom": "^6.28.0",
"react-toastify": "^10.0.6",
"tailwind-merge": "^2.5.5",
"zod": "^3.23.8",
"zustand": "^5.0.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@apollo/client": "^3.11.10",
"@biomejs/biome": "^1.9.4",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.5.0",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/lint-staged": "^13.3.0",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"autoprefixer": "^10.4.20",
"cypress": "^13.16.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-testing-library": "^7.0.0",
"graphql": "^16.9.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"msw": "^2.6.6",
"next": "^15.0.3",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"tailwindcss": "^3.4.15",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}