forked from Hana-Technology/myiconwallet-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.19 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.19 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
{
"name": "my-icon-wallet",
"description": "A wallet application for the ICON blockchain network",
"version": "1.0.0",
"author": "Ben Booth <bkbooth@gmail.com> (https://benbooth.dev)",
"license": "MIT",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"prebuild": "npm run format:check",
"test": "react-app-rewired test",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,json,css,scss,md}",
"format:check": "prettier --check src/**/*.{js,jsx,ts,tsx,json,css,scss,md}"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@ledgerhq/hw-app-icx": "file:packages/hw-app-icx",
"@ledgerhq/hw-transport-u2f": "^4.78.0",
"@reach/dialog": "^0.6.4",
"@reach/router": "^1.2.1",
"@reach/visually-hidden": "^0.6.2",
"@sweetalert/with-react": "^0.1.1",
"bignumber.js": "^9.0.0",
"chart.js": "^2.9.4",
"icon-sdk-js": "^0.0.18",
"lodash-es": "^4.17.15",
"prop-types": "^15.7.2",
"query-string": "^6.9.0",
"react": "^16.12.0",
"react-chartjs-2": "^2.8.0",
"react-dom": "^16.12.0",
"react-rangeslider": "^2.2.0",
"react-select": "^3.0.8",
"react-spring": "^8.0.27",
"react-switch": "^5.0.1",
"react-tooltip": "^3.11.1",
"sweetalert": "^2.1.2"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.3",
"husky": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-app-rewire-postcss": "^3.0.2",
"react-app-rewired": "^2.1.5",
"react-scripts": "3.4.1",
"tailwindcss": "^1.1.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}