-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.62 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
{
"name": "explorer-frontend",
"private": true,
"version": "1.8.2",
"type": "module",
"engines": {
"node": "^20.17.0",
"pnpm": "^9.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"preview": "vite preview",
"prepare": "husky",
"release": "semantic-release"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@reduxjs/toolkit": "^2.2.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"i18next": "^23.12.1",
"i18next-http-backend": "^2.5.2",
"lottie-react": "^2.4.0",
"@qubic-lib/qubic-ts-library": "0.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.3",
"react-redux": "^9.1.2",
"react-router-dom": "^6.24.1",
"redux-logger": "^3.0.6",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.39",
"prettier": "3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"semantic-release": "^24.1.1",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-svgr": "^4.2.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
}
}