-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.29 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.29 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
115
116
117
{
"name": "iLockers-DApp-FOSS-Interchained",
"version": "2.4.7",
"description": "Lockers for personal, or enterprise. iLocker Protocol && Dapp; FrenChain Open Source Software. ",
"main": "index.js",
"private": true,
"homepage": "https://ilocks.interchained.org",
"scripts": {
"dev": "webpack-dev-server",
"test": "cd srv/test/ && node serve.js",
"devel": "cd srv/devel/ && node serve.js",
"prod": "cd srv/prod/ && node serve.js",
"start": "react-scripts start",
"build": "react-scripts build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i-Lockers/iLock.git"
},
"author": "Interchained",
"license": "BSL",
"bugs": {
"url": "https://github.com/i-Lockers/iLock/issues"
},
"dependencies": {
"@certusone/wormhole-sdk": "^0.9.16",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.0",
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@ethersproject/providers": "^5.3.1",
"@material-ui/core": "^4.12.4",
"@metamask/detect-provider": "^2.0.0",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.51",
"@mui/material": "latest",
"@mui/styles": "^5.0.1",
"@mui/x-date-pickers": "^6.2.1",
"@reduxjs/toolkit": "^1.9.5",
"@types/react": "latest",
"@types/react-dom": "latest",
"@uniswap/sdk-core": "^3.2.2",
"@uniswap/token-lists": "^1.0.0-beta.31",
"@web3-react/core": "^6.1.9",
"@web3-react/frame-connector": "^6.0.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.8",
"axios": "^0.21.1",
"buffer": "^6.0.3",
"clsx": "^1.1.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"dexscreener-api": "^0.0.7",
"ethereum-multicall": "^2.9.0",
"ethers": "^6.0.0",
"framer-motion": "^10.12.8",
"ga-gtag": "^1.1.7",
"history": "^5.3.0",
"multicodec": "github:shopglobal/mutlicodec",
"notistack": "^2.0.2",
"parent-module": "^2.0.0",
"process": "^0.11.10",
"react": "^18.1.0",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^18.1.0",
"react-icons": "^4.8.0",
"react-redux": "^8.0.0",
"react-router-dom": "^6.0.0",
"react-swipeable-views": "^0.14.0",
"react-thunk": "^1.0.0",
"recharts": "^2.1.8",
"redux": "^4.1.0",
"redux-debounced": "^0.5.0",
"redux-localstorage-simple": "^2.5.1",
"redux-thunk": "^2.3.0",
"web3": "^1.3.6",
"xlsx": "^0.18.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"node-sass": "^6.0.0",
"prettier": "^2.3.1",
"react-scripts": "latest",
"webpack-cli": "^5.0.2"
}
}