-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.3 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
{
"name": "mazury-frontend",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && npx prettier --check .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install",
"format": "npx prettier --write ."
},
"dependencies": {
"@next/font": "^13.3.1",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-avatar": "^1.0.2",
"@radix-ui/react-popover": "^1.0.5",
"@reduxjs/toolkit": "^1.9.3",
"@sentry/nextjs": "^7.37.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tanstack/react-query": "^4.24.6",
"@tanstack/react-query-devtools": "^4.24.6",
"@types/lodash.debounce": "^4.0.7",
"@types/react-dom": "^18.0.4",
"@types/react-helmet": "^6.1.5",
"axios": "^0.25.0",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"dayjs": "^1.11.7",
"ethers": "^5.5.3",
"framer-motion": "^6.2.3",
"graphql": "^16.3.0",
"graphql-request": "^4.2.0",
"jwt-decode": "^3.1.2",
"lodash.debounce": "^4.0.8",
"next": "13.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"react-inlinesvg": "^3.0.0",
"react-modal": "^3.14.4",
"react-number-format": "^4.9.1",
"react-query-auth": "^2.1.1",
"react-scrolllock": "^5.0.1",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"siwe": "^1.1.6",
"swr": "^1.1.2",
"tailwindcss-radix": "^2.8.0",
"wagmi": "^0.11.4"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/node": "17.0.9",
"@types/react": "17.0.38",
"@types/react-modal": "^3.13.1",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"husky": "^7.0.4",
"jest": "^27.5.0",
"lint-staged": "^12.3.4",
"postcss": "^8.4.5",
"prettier": "2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"tailwindcss": "^3.0.15",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.7.4"
},
"resolutions": {
"webpack": "^5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}