-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.68 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
{
"name": "linum-labs",
"version": "0.0.1",
"private": false,
"description": "",
"repository": {
"url": "https://github.com/meness/linum-labs"
},
"license": "MIT",
"author": {
"name": "Alex Eskandari",
"email": "[email protected]",
"url": "https://github.com/meness"
},
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"build": "next build",
"dev": "next dev",
"format": "prettier --write . && stylelint src/**/*.css --fix && eslint --fix --ext .ts,.tsx,.js,.json .",
"lint": "prettier --check . && stylelint src/**/*.css && eslint --ext .ts,.tsx,.js,.json . && tsc --noEmit",
"prepare": "husky",
"start": "next start",
"update-browserslist": "npx update-browserslist-db@latest"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.3.4",
"@next/bundle-analyzer": "^14.1.4",
"@nextui-org/avatar": "^2.0.24",
"@nextui-org/button": "^2.0.27",
"@nextui-org/card": "^2.0.24",
"@nextui-org/image": "^2.0.24",
"@nextui-org/input": "^2.1.17",
"@nextui-org/link": "^2.0.26",
"@nextui-org/modal": "^2.0.29",
"@nextui-org/navbar": "^2.0.27",
"@nextui-org/skeleton": "^2.0.24",
"@nextui-org/switch": "^2.0.25",
"@nextui-org/system": "^2.0.15",
"@nextui-org/theme": "^2.1.18",
"@rainbow-me/rainbowkit": "^2.0.4",
"@react-aria/visually-hidden": "^3.8.10",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-query-devtools": "^5.28.10",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"axios": "^1.6.8",
"csp-dev": "^1.0.2",
"filepond": "^4.30.6",
"framer-motion": "^11.0.22",
"next": "^14.1.4",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-filepond": "^7.1.2",
"react-hook-form": "^7.51.2",
"react-hot-toast": "^2.4.1",
"sharp": "^0.33.3",
"simplex-noise": "^4.0.1",
"tailwind-merge": "^2.2.2",
"viem": "^2.9.3",
"wagmi": "^2.5.13",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@next/eslint-plugin-next": "^14.1.4",
"@tanstack/eslint-plugin-query": "^5.28.6",
"@types/csp-dev": "^1.0.3",
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@wagmi/cli": "^2.1.4",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"cssnano": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-prefer-function-component": "^3.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^9.5.2",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-multiline-arrays": "^3.0.4",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.4.12",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.5.13",
"renovate": "^37.273.0",
"stylelint": "^16.3.1",
"stylelint-config-recess-order": "^5.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3"
},
"engines": {
"node": ">= 20.0.0"
}
}