forked from airswap/airswap-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.35 KB
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
111
112
113
114
{
"name": "airswap-web",
"version": "0.1.0",
"private": true,
"homepage": "https://www.airswap.io/",
"scripts": {
"start": "craco start",
"build": "craco build",
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"prettier": "prettier --write \"./src/**/*.{ts,tsx}\" --plugin @trivago/prettier-plugin-sort-imports",
"test": "craco test",
"eject": "react-scripts eject",
"prepare": "husky install",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@airswap/balances": "2.0.0",
"@airswap/constants": "3.0.0-beta.2",
"@airswap/libraries": "3.0.0-beta.4",
"@airswap/metadata": "3.0.0-beta.1",
"@airswap/swap": "3.0.0-beta.5",
"@airswap/typescript": "3.0.0-beta.1",
"@airswap/utils": "3.0.0-beta.0",
"@craco/craco": "^6.2.0",
"@fontsource/dm-mono": "^4.5.0",
"@reduxjs/toolkit": "~1.5.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/styled-components": "^5.1.12",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "6.2.4",
"bignumber.js": "^9.0.1",
"classnames": "^2.3.1",
"erc-20-abi": "^1.0.0",
"ethers": "^5.5.4",
"framer-motion": "^4.1.17",
"i18next": "^20.4.0",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.3.0",
"jayson": "^3.6.4",
"lodash.uniqby": "^4.7.0",
"react": "^17.0.2",
"react-beforeunload": "^2.5.2",
"react-blockies": "^1.4.1",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hot-toast": "^2.0.0",
"react-i18next": "^11.11.4",
"react-icons": "^4.2.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"string_decoder": "^1.3.0",
"styled-components": "^5.3.1",
"truncate-eth-address": "^1.0.2",
"typescript": "^4.4.3"
},
"devDependencies": {
"@react-theming/storybook-addon": "^1.1.1",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/node-logger": "^6.3.7",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.7",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/lodash.uniqby": "^4.7.6",
"@types/react-beforeunload": "^2.1.1",
"@types/react-blockies": "^1.4.1",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.1.8",
"autoprefixer": "^9",
"husky": "^7.0.1",
"jest-canvas-mock": "^2.3.1",
"postcss": "^7"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"babel-loader": "8.1.0",
"styled-components": "^5"
}
}