-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.17 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
{
"name": "gnosis-wallet-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@craco/craco": "^6.4.3",
"@react-spring/parallax": "^9.3.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/classnames": "^2.3.1",
"@types/howler": "^2.2.4",
"@types/numeral": "^2.0.2",
"@types/styled-components": "^5.1.15",
"@usedapp/core": "^0.6.3",
"antd": "^4.17.2",
"classnames": "^2.3.1",
"ethers": "^5.5.2",
"howler": "^2.2.3",
"numeral": "^2.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.7",
"react-router-dom": "^6.0.2",
"react-scripts": "4.0.3",
"react-spring": "^9.3.2",
"react-use": "^17.3.1",
"react-use-gesture": "^5.0.0",
"styled-components": "^5.3.3",
"tachyons": "^4.12.0",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "craco start",
"build": "GENERATE_SOURCEMAP=false craco build",
"test": "craco test",
"prepare": "husky install",
"postinstall": "npm run generate-typed-contracts",
"generate-typed-contracts": "typechain --target=ethers-v5 'src/sdk/abi/*.json' --out-dir 'src/sdk/contracts'"
},
"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": {
"react-error-overlay": "6.0.9",
"@typechain/ethers-v5": "^8.0.5",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"craco": "^0.0.3",
"craco-less": "^1.20.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"typechain": "^6.1.0",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}