-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
98 lines (98 loc) · 2.54 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
95
96
97
98
{
"name": "trusted-setup-frontend",
"version": "0.2.0",
"private": true,
"homepage": ".",
"dependencies": {
"@coinbase/wallet-sdk": "^3.5.4",
"@noble/bls12-381": "^1.4.0",
"@noble/hashes": "^1.1.3",
"@portis/web3": "^4.0.7",
"@spruceid/siwe-web3modal": "^0.1.10",
"@tanstack/react-query": "^4.2.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@tippyjs/react": "^4.2.6",
"@toruslabs/torus-embed": "^1.37.2",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@walletconnect/web3-provider": "^1.8.0",
"@web3modal/ethereum": "^2.6.2",
"@web3modal/react": "^2.6.2",
"blockies-identicon": "^0.1.0",
"ethereumjs-abi": "^0.6.8",
"fortmatic": "^2.4.0",
"husky": "^8.0.1",
"i18next": "^21.10.0",
"lint-staged": "^13.0.3",
"node-fetch": "^3.3.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"react-lottie": "^1.2.3",
"react-modal": "^3.15.1",
"react-router-dom": "^6.4.1",
"react-scripts": "5.0.1",
"react-select": "^5.5.7",
"styled-components": "^5.3.5",
"text-security": "^3.2.1",
"viem": "^1.9.3",
"wagmi": "^1.3.7",
"web-vitals": "^2.1.0",
"zustand": "^4.2.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"extract": "babel -f .babelrc 'src/**/*.{js,jsx,ts,tsx}'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@craco/craco": "^7.0.0",
"@types/react-lottie": "^1.2.6",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.26",
"babel-plugin-i18next-extract": "^0.9.0",
"typescript": "^5.2.2"
}
}