-
Notifications
You must be signed in to change notification settings - Fork 414
/
package.json
70 lines (70 loc) · 1.93 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
{
"name": "goose-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'"
},
"husky": {
"hooks": {
"pre-commit": "yarn format",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@binance-chain/bsc-use-wallet": "^0.8.1",
"@crowdin/crowdin-api-client": "^1.10.1",
"@ethersproject/abi": "^5.0.7",
"@pancakeswap-libs/uikit": "goosedefi/goose-uikit",
"@reduxjs/toolkit": "^1.5.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.7",
"bignumber.js": "^9.0.0",
"chart.js": "^2.9.4",
"iframe-resizer-react": "^1.1.0",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-chartjs-2": "^2.11.1",
"react-countup": "^4.3.3",
"react-dom": "^17.0.1",
"react-feather": "^2.0.8",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"react-twitter-widgets": "^1.9.5",
"styled-components": "^5.1.1",
"typescript": "^4.1.3",
"universal-cookie": "^4.0.4",
"web3": "^1.3.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@pancakeswap-libs/eslint-config-pancake": "1.0.0",
"@types/jest": "^26.0.19",
"eslint": "^7.16.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"source-map-explorer": "^2.5.1"
}
}