-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
101 lines (101 loc) · 2.61 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
{
"name": "mirror",
"version": "1.0.0",
"homepage": ".",
"repository": "github:Mirror-Protocol/mirror-web-app",
"author": "Terra <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@terra-money/terra.js": "^3.1.0",
"@terra-money/wallet-provider": "^3.9.1",
"@tippyjs/react": "^4.2.6",
"axios": "^0.26.1",
"bignumber.js": "^9.0.2",
"chart.js": "^3.7.1",
"chartjs-adapter-date-fns": "^2.0.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"ethers": "^5.6.1",
"graphql": "^16.3.0",
"graphql-request": "^4.1.0",
"numeral": "^2.0.6",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-chartjs-2": "3.3.0",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"react-query": "^3.34.16",
"react-router-dom": "^5.3.0",
"recoil": "^0.6.1",
"use-onclickoutside": "^0.4.0"
},
"devDependencies": {
"@types/chart.js": "^2.9.35",
"@types/classnames": "^2.3.1",
"@types/history": "^4.7.11",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/numeral": "^2.0.2",
"@types/ramda": "^0.28.1",
"@types/react": "^17.0.41",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.14",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"pinst": "^3.0.0",
"prettier": "^2.6.0",
"react-error-overlay": "6.0.9",
"react-scripts": "4.0.3",
"sass": "^1.49.9",
"source-map-explorer": "^2.5.2",
"typescript": "~4.6.2"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"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
}
}