forked from algorandfoundation/algokit-lora
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 5.32 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 5.32 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "algokit-lora",
"private": true,
"version": "2.3.0-beta.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-s build:[0-9]*",
"build:dev": "run-s build:0-clean build:1-icons build:2-svg build:3-tsc build:4-vite:dev build:5-netlify",
"build:0-clean": "node -e \"fs.rmSync('dist',{recursive:true,force:true}); fs.rmSync('src/features/common/components/icons',{recursive:true,force:true}); fs.rmSync('src/features/common/components/svg',{recursive:true,force:true})\"",
"build:1-icons": "npx --yes @svgr/cli --config-file .svgrrc.cjs --icon --typescript --out-dir src/features/common/components/icons src/assets/icons --no-index --filename-case kebab --jsx-runtime automatic",
"build:2-svg": "npx --yes @svgr/cli --config-file .svgrrc.cjs --typescript --out-dir src/features/common/components/svg src/assets/svg --no-index --filename-case kebab --jsx-runtime automatic",
"build:3-tsc": "tsc",
"build:4-vite": "vite build",
"build:4-vite:dev": "vite build --mode development",
"build:5-netlify": "cpy netlify.toml dist",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest watch",
"audit": "better-npm-audit audit -l moderate",
"check-types": "tsc --noEmit && npx --yes madge src/App.tsx --circular",
"pre-commit": "run-s check-types lint:fix audit test",
"postinstall": "patch-package"
},
"dependencies": {
"@algorandfoundation/algokit-subscriber": "^3.2.0",
"@algorandfoundation/algokit-utils": "^9.1.2",
"@auth0/auth0-react": "^2.2.4",
"@blockshake/defly-connect": "^1.2.1",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.9.0",
"@perawallet/connect": "^1.4.2",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-table": "^8.16.0",
"@txnlab/use-wallet": "^4.0.0",
"@txnlab/use-wallet-react": "^4.0.0",
"@xstate/react": "^5.0.3",
"algosdk": "^3.5.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"date-fns": "^3.5.0",
"decimal.js": "^10.4.3",
"html2canvas-pro": "^1.5.8",
"idb": "^8.0.0",
"isutf8": "^4.0.0",
"jotai": "2.7.2",
"jotai-effect": "^0.6.0",
"jotai-xstate": "^0.5.0",
"jsonschema": "^1.4.1",
"lucide-react": "^0.356.0",
"lute-connect": "^1.2.0",
"msw": "^2.4.1",
"multiformats": "^13.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.1",
"react-idle-timer": "^5.7.2",
"react-json-view-lite": "^1.4.0",
"react-number-format": "^5.4.4",
"react-qr-code": "^2.0.15",
"react-router-dom": "6.24.0",
"react-toastify": "^10.0.5",
"tailwind-merge": "^2.2.1",
"use-debounce": "^10.0.3",
"uuid": "^10.0.0",
"vaul": "^0.9.0",
"xstate": "^5.17.4",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@eslint/js": "^9.15.0",
"@makerx/prettier-config": "^2.0.0",
"@makerx/ts-config": "^1.0.1",
"@makerx/ts-dossier": "^3.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.2",
"@tailwindcss/postcss": "^4.1.16",
"@tailwindcss/vite": "^4.1.16",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.26",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"better-npm-audit": "^3.7.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cpy-cli": "^5.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"fake-indexeddb": "^6.0.0",
"happy-dom": "^20.0.8",
"npm-run-all2": "^8.0.4",
"patch-package": "^8.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.7.1",
"semantic-release": "^24.2.9",
"semantic-release-export-data": "1.0.1",
"tailwindcss": "^4.1.16",
"tw-animate-css": "^1.4.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^7.2.0",
"vite-plugin-node-polyfills": "^0.24.0",
"vitest": "^3.2.4"
},
"overrides": {
"ws@>7.0.0 <7.5.9": "7.5.10",
"esbuild": "0.25.0",
"js-yaml": "4.1.1"
}
}