-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.17 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
{
"name": "token-guard",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "vite",
"tsc": "tsc -b",
"build": "vite build",
"lint": "eslint . --cache",
"lint:fix": "yarn eslint --fix",
"preview": "vite preview",
"generate": "openapi-typescript ./openapi.json --output ./src/api/schema.d.ts"
},
"dependencies": {
"@internationalized/date": "^3.6.0",
"@tanstack/react-query": "^5.62.7",
"clsx": "^2.1.1",
"i18next": "^24.1.2",
"lodash-es": "^4.17.21",
"openapi-fetch": "^0.13.3",
"openapi-react-query": "^0.2.8",
"react": "^19.0.0",
"react-aria-components": "^1.5.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.1",
"react-i18next": "^15.2.0",
"react-router-dom": "^7.0.2",
"react-toastify": "^11.0.0",
"viem": "^2.21.55",
"wagmi": "^2.14.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@eslint-react/eslint-plugin": "^1.20.0",
"@iconify/json": "^2.2.285",
"@iconify/tailwind": "^1.2.0",
"@react-aria/optimize-locales-plugin": "^1.1.3",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@types/eslint-plugin-tailwindcss": "^3.17.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"eslint": "^9.17.0",
"eslint-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-tailwindcss": "^3.17.5",
"lint-staged": "^15.2.11",
"openapi-typescript": "^7.4.4",
"postcss": "^8.4.49",
"simple-git-hooks": "^2.11.1",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*": "eslint --cache --fix --no-warn-ignored --max-warnings 0"
}
}