forked from polkadot-cloud/polkadot-staking-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.56 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "polkadot-staking-dashboard",
"version": "0.1.0",
"license": "apache-2.0",
"private": false,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@polkadot/api": "^9.12.1",
"@polkadot/keyring": "^10.2.6",
"@polkadot/react-identicon": "^2.10.1",
"@polkadot/rpc-provider": "^9.12.1",
"@polkadot/types": "^9.12.1",
"@polkadot/types-codec": "^9.12.1",
"@polkadot/util": "^10.2.6",
"@rossbulat/polkadot-dashboard-ui": "0.1.0-alpha.32",
"@substrate/connect": "^0.7.19",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"bignumber.js": "^9.1.1",
"bn.js": "^5.2.1",
"chart.js": "^4.2.0",
"chartjs-plugin-datalabels": "^2.2.0",
"che-react-number-easing": "^0.1.4",
"date-fns": "^2.29.3",
"downshift": "^6.1.7",
"framer-motion": "7.6.19",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"lodash.throttle": "^4.1.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-content-loader": "^6.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
"react-i18next": "^12.1.1",
"react-lottie": "^1.2.3",
"react-router-dom": "^6.8.0",
"react-scripts": "^5.0.1",
"react-scroll": "^1.8.9",
"styled-components": "^5.3.3",
"styled-theming": "^2.2.0",
"typescript": "^4.9.4",
"web-vitals": "^3.1.0",
"yarn": "^1.22.18"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.6",
"@types/react-lottie": "^1.2.6",
"@types/react-scroll": "^1.8.6",
"@types/styled-components": "^5.1.21",
"@types/styled-theming": "^2.2.5",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^5.0.0",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.2",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^29.0.5",
"worker-loader": "^3.0.8"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"test": "jest",
"lint": "eslint ./src --fix && npx prettier --write ./src",
"lint:scripts": "npx prettier --write ./.scripts",
"locale:order": "node ./.scripts/localeOrderKeys.js",
"locale:validate": "node ./.scripts/localeValidate.js"
},
"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"
]
},
"homepage": "/"
}