-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.48 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
90
91
{
"name": "template",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"start": "yarn && vite --port 3002 --open",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@gear-js/api": "0.40.0",
"@gear-js/react-hooks": "0.13.1",
"@gear-js/ui": "~0.5.28",
"@gear-js/vara-ui": "0.0.11",
"@gear-js/wallet-connect": "0.1.2",
"@polkadot/api": "15.2.1",
"@polkadot/extension-dapp": "0.58.1",
"@polkadot/extension-inject": "0.46.5",
"@polkadot/react-identicon": "3.5.1",
"@polkadot/types": "13.2.1",
"@polkadot/wasm-crypto": "7.4.1",
"@polkadot/x-randomvalues": "13.3.1",
"@radix-ui/react-dropdown-menu": "2.0.5",
"@radix-ui/react-scroll-area": "1.0.4",
"@radix-ui/react-select": "1.2.2",
"@tanstack/react-query": "5.59.16",
"@tanstack/react-table": "8.9.3",
"bip32": "5.0.0-rc.0",
"bip39": "3.1.0",
"class-variance-authority": "0.6.1",
"clsx": "1.2.1",
"crypto-js": "4.2.0",
"dotenv": "16.4.7",
"framer-motion": "^11.0.18",
"lucide-react": "0.259.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.51.5",
"react-hot-toast": "2.5.1",
"react-icons": "5.2.1",
"react-router-dom": "6.22.2",
"sails-js": "0.3.1",
"sails-js-parser": "0.3.1",
"simplebar-react": "3.2.6",
"zustand": "4.5.5"
},
"devDependencies": {
"@types/crypto-js": "^4",
"@types/node": "18.16.19",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@vitejs/plugin-react-swc": "3.3.2",
"autoprefixer": "10.4.20",
"eslint": "8.43.0",
"eslint-config-react-app": "7.0.1",
"node-stdlib-browser": "1.2.0",
"postcss": "8.4.49",
"prettier": "2.8.8",
"sass": "1.69.1",
"tailwindcss": "3.4.17",
"typescript": "4.9.5",
"vite": "4.3.9",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-node-stdlib-browser": "0.2.1",
"vite-plugin-svgr": "3.2.0",
"vite-plugin-top-level-await": "1.3.1",
"vite-plugin-wasm": "3.2.2"
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"./**/*.{js,css,ts,tsx}": "eslint --fix"
}
}