forked from ZZZ-Finance/zzz-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.72 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
{
"name": "zzz-platform",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ethersproject/contracts": "^5.0.0-beta",
"@ethersproject/networks": "^5.0.0-beta",
"@ethersproject/providers": "^5.0.0-beta",
"@uniswap/sdk": "^3.0.3",
"@web3-react/core": "^6.1.1",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.1.6",
"bootstrap-icons": "^1.0.0",
"classnames": "^2.2.6",
"ethers": "^5.0.12",
"lodash.debounce": "^4.0.8",
"mobx": "5.15.6",
"mobx-react": "^6.3.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loader-spinner": "^3.1.14",
"react-modal": "^3.11.2",
"react-query": "^3.6.0",
"react-router-dom": "^5.2.0",
"react-router-transition": "^2.0.0",
"react-scripts": "3.4.3",
"react-table": "^7.5.0",
"react-toastify": "^6.0.8",
"react-tooltip": "^4.2.10",
"styled-components": "^5.2.0"
},
"scripts": {
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x} --max-warnings=0",
"lint-fix": "eslint --fix src/**/*.ts{,x}",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"component": "node tools/codegen.js component"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"no-empty-pattern": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "ZZZ Platform",
"main": "index.js",
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^24.0.0",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-loader-spinner": "^3.1.0",
"@types/react-modal": "^3.10.6",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.3",
"babel-plugin-styled-components": "^1.11.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "~3.7.2"
},
"author": "zzz.finance",
"license": "ISC",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"yarn lint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}