-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.77 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
{
"name": "xord-app",
"version": "1.0.0",
"private": true,
"cracoConfig": "craco.config.js",
"dependencies": {
"@craco/craco": "^6.4.3",
"@ethersproject/abi": "^5.6.4",
"@ethersproject/address": "^5.6.1",
"@ethersproject/constants": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/providers": "^5.6.8",
"@reduxjs/toolkit": "^1.7.1",
"@testing-library/user-event": "^12.1.10",
"@typechain/ethers-v5": "^8.0.5",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.20",
"@walletconnect/ethereum-provider": "^1.8.0",
"@web3-react/core": "^8.0.35-beta.0",
"@web3-react/metamask": "^8.0.28-beta.0",
"@web3-react/types": "^8.0.20-beta.0",
"@web3-react/walletconnect": "^8.0.35-beta.0",
"@web3-react/walletconnect-connector": "^6.2.13",
"auto-create-reducer-script": "^3.3.0",
"auto-fetch-abi": "^1.2.0",
"axios": "^0.24.0",
"buffer": "^6.0.3",
"ethers": "^5.5.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "6.2.1",
"react-scripts": "5.0.0",
"sass": "^1.49.0",
"typescript": "^4.5.4",
"web-vitals": "^2.1.3",
"webpack": "5.66.0"
},
"scripts": {
"start": "npm run typechain & craco start",
"build": "npm run typechain & INLINE_RUNTIME_CHUNK=false craco build",
"test": "npm run typechain & craco test",
"eject": "react-scripts eject",
"lint": "npx eslint . --quiet --fix",
"prepare": "husky install",
"typechain": "typechain --target ethers-v5 --out-dir ./src/contracts/types './src/contracts/*.json'",
"ini-contract": "node src/scripts/initializeContract.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@types/chrome": "^0.0.177",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typechain": "^6.1.0"
},
"resolutions": {
"mini-css-extract-plugin": "2.4.5",
"webpack": "5.66.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "npm run lint"
}
}