This repository has been archived by the owner on Oct 27, 2021. It is now read-only.
forked from Mirror-Protocol/terra-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.16 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
{
"name": "mirror",
"version": "1.0.0",
"homepage": "https://terra.mirror.finance/",
"repository": "github:Mirror-Protocol/mirror-web-app",
"author": "Terra <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@material-ui/core": "^4.11.4",
"@sentry/react": "^6.7.1",
"@sentry/tracing": "^6.7.1",
"@terra-money/terra.js": "^1.8.4",
"@terra-money/wallet-provider": "^1.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@tippyjs/react": "^4.2.5",
"@types/chart.js": "^2.9.32",
"@types/classnames": "^2.3.1",
"@types/history": "^4.7.8",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/numeral": "^2.0.1",
"@types/ramda": "^0.27.40",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-modal": "^3.12.0",
"@types/react-router-dom": "^5.1.7",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"chart.js": "^3.3.2",
"chartjs-adapter-date-fns": "^2.0.0",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"ethers": "^5.3.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"numeral": "^2.0.6",
"prettier": "^2.3.1",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-chartjs-2": "^3.0.3",
"react-dom": "^17.0.2",
"react-modal": "^3.14.3",
"react-query": "^3.17.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"recoil": "^0.3.1",
"sass": "^1.35.1",
"source-map-explorer": "^2.5.2",
"styled-components": "^5.3.0",
"typescript": "~4.3.4",
"use-onclickoutside": "^0.3.2",
"workbox-background-sync": "^6.1.5",
"workbox-broadcast-update": "^6.1.5",
"workbox-cacheable-response": "^6.1.5",
"workbox-core": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-google-analytics": "^6.1.5",
"workbox-navigation-preload": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-range-requests": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-streams": "^6.1.5"
},
"devDependencies": {
"husky": "^6.0.0",
"pinst": "^2.1.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"pre-commit": "lint-staged"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"import/no-anonymous-default-export": "off"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --no-semi --write"
],
"src/**/*.{json,css,scss,md}": [
"prettier --no-semi --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"semi": false
}
}