forked from terra-money/station-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.2 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
111
112
113
114
115
116
117
{
"name": "station",
"engines": {
"node": "12.x"
},
"version": "3.8.0",
"description": "A desktop application to interact with Terra Core.",
"author": "Terra <engineering@terra.money> (https://terra.money)",
"license": "ISC",
"dependencies": {
"@ledgerhq/hw-transport-webhid": "^5.15.0",
"@ledgerhq/hw-transport-webusb": "^5.15.0",
"@sentry/browser": "^5.13.0",
"@terra-money/ledger-terra-js": "^1.1",
"@terra-money/use-station": "^3.8.11",
"@types/numeral": "^0.0.28",
"@ungap/url-search-params": "^0.2",
"ace-builds": "^1.4.12",
"axios": "^0.19.2",
"bech32": "^1.1.3",
"chart.js": "^2.9.3",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"crypto-js": "^4.0.0",
"deepmerge": "^4.2.2",
"i18next": "^19.4.5",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.19",
"numeral": "^2.0.6",
"ramda": "^0.27.0",
"react": "^16.13.0",
"react-ace": "^9.1.1",
"react-app-polyfill": "^1.0.6",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.0",
"react-i18next": "^11",
"react-intersection-observer": "^8.26.1",
"react-modal": "^3.11.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"react-toastify": "^5.5.0",
"secp256k1": "3.7.1",
"semver": "^7.1.3",
"typescript": "^3.8.3"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-transform-react-jsx-development": "^7.9.0",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-info": "^5.3.14",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addon-viewport": "^5.3.14",
"@storybook/addons": "^5.3.14",
"@storybook/react": "^5.3.14",
"@types/bech32": "^1.1.2",
"@types/chart.js": "^2.9.15",
"@types/classnames": "^2.2.9",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.7",
"@types/ramda": "^0.27",
"@types/react": "^16.9.23",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.5",
"@types/react-modal": "^3.10.5",
"@types/react-router-dom": "^5.1.3",
"@types/secp256k1": "^3",
"@types/semver": "^7.1.0",
"babel-loader": "^8",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"node-sass": "^4.14.1",
"prettier": "^2",
"regenerator-runtime": "^0.13",
"source-map-explorer": "^2.3.1",
"webpack": "4.42.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"semi": false
},
"lint-staged": {
"src/**/*.{ts,tsx,json,scss}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
}
}