forked from jbx-protocol/juice-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.58 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
{
"name": "@jbox/app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@jbx-protocol/contracts": "^0.0.2",
"@lingui/detect-locale": "^3.13.0",
"@lingui/react": "^3.13.0",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/react-redux": "^7.1.16",
"@uniswap/sdk": "^3.0.3",
"@walletconnect/web3-provider": "^1.5.4",
"antd": "^4.16.7",
"autolinker": "^3.14.3",
"axios": "^0.21.1",
"bnc-notify": "^1.9.1",
"bnc-onboard": "1.34.1",
"env-cmd": "^10.1.0",
"erc-20-abi": "^1.0.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-block-by-date": "^1.4.2",
"ethers": "^5.1.0",
"react": "^17",
"react-dom": "^17.0.1",
"react-query": "^3.33.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"recharts": "^2.1.2",
"sass": "^1.38.1",
"typescript": "^4.0.3",
"use-deep-compare-effect": "^1.6.1",
"web-vitals": "^0.2.4"
},
"resolutions": {
"jest": "26.6.0",
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1",
"eslint-plugin-react-hooks": "4.2.0"
},
"scripts": {
"compile-styles": "lessc ./src/styles/antd.less ./src/styles/antd.css --js",
"start": "yarn compile-styles && react-scripts start",
"build": "yarn compile-styles && react-scripts build",
"test": "yarn compile-styles && react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "yarn lint --fix",
"lint-staged": "lint-staged",
"prepare": "husky install",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"postinstall": "yarn i18n:extract && yarn i18n:compile"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css}": [
"eslint",
"prettier --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": {
"@lingui/cli": "^3.13.0",
"@lingui/macro": "^3.13.0",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/react-router-dom": "^5.1.7",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.0",
"less": "^4.1.1",
"lint-staged": "^12.1.1",
"prettier": "2.4.1"
}
}