-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.52 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
{
"name": "thena-interface",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@next/third-parties": "^14.1.0",
"@reduxjs/toolkit": "^2.0.1",
"@tanstack/react-query": "^5.17.19",
"@vercel/analytics": "^1.1.4",
"@vercel/speed-insights": "^1.0.2",
"@web3modal/wagmi": "^4.0.11",
"bignumber.js": "^9.1.2",
"clsx": "^2.0.0",
"css-box-model": "^1.2.1",
"d3": "^7.8.5",
"dayjs": "^1.11.10",
"framer-motion": "^11.0.6",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"lightweight-charts": "^4.1.2",
"lodash": "^4.17.21",
"next": "^14.1.0",
"polished": "^4.2.2",
"rc-slider": "^10.5.0",
"react": "^18.2.0",
"react-datepicker": "^4.25.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"react-modal": "^3.16.1",
"react-redux": "^9.0.4",
"react-toastify": "^10.0.4",
"react-tooltip": "^5.25.1",
"redux-localstorage-simple": "^2.5.1",
"redux-persist": "^6.0.0",
"swiper": "^11.0.5",
"swr": "^2.2.4",
"tailwind-merge": "^2.1.0",
"thena-fusion-sdk": "^0.0.1",
"thena-sdk-core": "^0.0.6",
"tiny-invariant": "^1.3.1",
"uuid": "^9.0.1",
"viem": "^2.4.0",
"wagmi": "^2.3.1",
"yarn-deduplicate": "^6.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-airbnb-config": "^1.0.0",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.6"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}