forked from polkadot-cloud/polkadot-staking-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 3.25 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
92
93
94
95
{
"name": "polkadot-staking-dashboard",
"version": "0.1.0",
"type": "module",
"license": "Apache-2.0",
"homepage": "/",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "gh-pages -d build",
"lint": "eslint . --fix && npx prettier --write .",
"lint:scripts": "npx prettier --write ./.scripts",
"locale:order": "node ./.scripts/localeOrderKeys.cjs",
"locale:validate": "node ./.scripts/localeValidate.cjs",
"test": "vitest",
"visualizer": "vite-bundle-visualizer"
},
"dependencies": {
"@dotlottie/player-component": "^1.4.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@ledgerhq/hw-transport-webhid": "^6.27.15",
"@polkadot/api": "^10.7.3",
"@polkadot/keyring": "^12.1.1",
"@polkadot/react-identicon": "^3.5.1",
"@polkadot/react-qr": "^3.4.1",
"@polkadot/rpc-provider": "^10.7.3",
"@polkadot/util": "^12.3.2",
"@polkadotcloud/core-ui": "0.2.72",
"@polkadotcloud/react-odometer": "0.1.17",
"@polkadotcloud/utils": "0.2.22",
"@substrate/connect": "^0.7.30",
"@zondax/ledger-substrate": "^0.40.7",
"bignumber.js": "^9.1.1",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"chart.js": "^4.3.0",
"date-fns": "^2.29.3",
"framer-motion": "^10.12.18",
"i18next": "^22.5.0",
"i18next-browser-languagedetector": "^7.1.0",
"lodash.throttle": "^4.1.1",
"rc-slider": "^10.1.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.8",
"react-helmet": "^6.1.0",
"react-i18next": "^12.3.1",
"react-router-dom": "^6.11.2",
"react-scroll": "^1.8.9",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@ledgerhq/logs": "^6.10.1",
"@types/lodash.throttle": "^4.1.7",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/react-helmet": "^6.1.6",
"@types/react-scroll": "^1.8.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitejs/plugin-react-swc": "^3.3.1",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unused-imports": "^2.0.0",
"gh-pages": "^5.0.0",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"sass": "^1.62.1",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-bundle-visualizer": "^0.8.0",
"vite-plugin-checker": "^0.6.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.1"
}
}