-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.18 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": "bitbuzz",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"testnet": "vite --mode testnet",
"build": "tsc && vite build",
"bn": "vite build",
"build-testnet": "tsc && vite build --mode testnet",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"data": "npx json-server --watch db.json --port 3000 --delay 1500"
},
"dependencies": {
"@mantine/hooks": "^7.7.0",
"@metaid/metaid": "^1.4.3",
"@mysten/dapp-kit": "^0.14.20",
"@mysten/sui": "^1.9.0",
"@tanstack/react-query": "^5.13.4",
"@tanstack/react-query-devtools": "^5.13.5",
"axios": "^1.6.7",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"compressorjs": "^1.2.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"decimal.js-light": "^2.5.1",
"jotai": "^2.6.0",
"json-server": "^0.17.4",
"lucide-react": "^0.294.0",
"md5": "^2.3.0",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-intersection-observer": "^9.5.3",
"react-loading-overlay-ts": "^2.0.2",
"react-router-dom": "^6.20.1",
"react-toastify": "^10.0.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/classnames": "^2.3.1",
"@types/crypto-js": "^4.2.2",
"@types/md5": "^2.3.5",
"@types/node": "^20.10.4",
"@types/ramda": "^0.29.12",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/sanitize-html": "^2.11.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"daisyui": "^4.4.19",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"postcss": "^8.4.32",
"postcss-import": "^16.0.0",
"tailwindcss": "^3.3.6",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-node-polyfills": "^0.19.0",
"vite-plugin-pwa": "^0.17.4",
"vite-plugin-wasm": "^3.3.0"
}
}