forked from terraswap/classic-terraswap-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.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
{
"name": "terraswap-web-app",
"version": "1.0.0",
"homepage": "https://app.terraswap.com",
"repository": "github:terraswap/terraswap-web-app",
"author": "DELIGHT <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@apollo/client": "^3.2.4",
"@material-ui/core": "^4.11.0",
"@terra-money/terra.js": "^2.0.11",
"@terra-money/wallet-provider": "^2.1.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.8",
"@tippyjs/react": "^4.2.0",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"@types/numeral": "^0.0.28",
"@types/ramda": "^0.27.29",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-modal": "^3.10.6",
"@types/react-router-dom": "^5.1.7",
"axios": "^0.21.1",
"axios-cache-adapter": "^2.7.3",
"bignumber.js": "^9.0.1",
"classnames": "^2.2.6",
"graphql": "^15.3.0",
"http-proxy-middleware": "^2.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"node-sass": "^4.14.1",
"numeral": "^2.0.6",
"prettier": "^2.1.2",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.1.1",
"react-modal": "^3.11.2",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"source-map-explorer": "^2.5.0",
"styled-components": "^5.2.3",
"typescript": "^4.2.4"
},
"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'"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,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"
]
},
"devDependencies": {
"@types/styled-components": "^5.1.9"
}
}