forked from Monarch717/webapp-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.03 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
{
"name": "webapp-v2",
"version": "1.0.0",
"private": true,
"dependencies": {
"@0x/contract-addresses": "^6.3.0",
"@0x/utils": "^6.4.4",
"@craco/craco": "^6.1.2",
"@gnosis.pm/safe-apps-web3-react": "^0.6.3",
"@headlessui/react": "^1.3.0",
"@popperjs/core": "^2.9.3",
"@reduxjs/toolkit": "^1.5.1",
"@tailwindcss/forms": "^0.3.3",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.170",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@web3-react/core": "^6.1.9",
"@web3-react/fortmatic-connector": "^6.1.6",
"@web3-react/frame-connector": "^6.0.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/portis-connector": "^6.1.9",
"@web3-react/walletconnect-connector": "^6.2.4",
"@web3-react/walletlink-connector": "^6.2.3",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"cypress": "^8.0.0",
"dayjs": "^1.10.5",
"ethers": "^5.4.7",
"json-bigint": "^1.0.0",
"lightweight-charts": "^3.5.0",
"lodash": "^4.17.21",
"numbro": "^2.3.5",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-intl": "^5.17.6",
"react-popper": "^2.2.5",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-table": "^7.7.0",
"rxjs": "6.6.7",
"source-map-explorer": "^2.5.2",
"use-async-effect": "^2.2.3",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@typechain/ethers-v5": "^7.0.1",
"@types/json-bigint": "^1.0.0",
"@types/numeral": "^2.0.1",
"@types/react-table": "^7.7.2",
"autoprefixer": "^9",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"postcss": "^7",
"prettier": "^2.3.0",
"react-redux": "^7.2.4",
"tailwindcss": "npm:@tailwindcss/[email protected]",
"typechain": "^5.1.2",
"typescript": "^4.1.2"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"compile-abis": "typechain --target ethers-v5 --out-dir src/services/web3/abis/types './src/services/web3/abis/*.json'",
"postinstall": "yarn compile-abis",
"start": "TAILWIND_MODE=watch craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"@typescript-eslint/no-unused-vars": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}