-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "dapp-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fc": "npx prettier --check ./src",
"ff": "npx prettier --write ./src",
"compile-contract-types": "typechain --target ethers-v5 --out-dir \"src/contracts/types\" \"src/contracts/*.json\""
},
"dependencies": {
"@aws-amplify/ui-react": "^5.3.1",
"@cometh/connect-sdk": "^1.1.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@mui/material": "^5.14.14",
"@popperjs/core": "^2.11.6",
"@radix-ui/react-icons": "^1.3.0",
"@rainbow-me/rainbowkit": "^0.8.1",
"@react-spring/web": "^9.7.3",
"@sismo-core/sismo-connect-react": "^0.0.23",
"@sismo-core/sismo-connect-server": "^0.0.23",
"@tableland/local": "^2.0.2",
"@tableland/sdk": "^4.5.3-dev.0",
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10.4.13",
"aws-amplify": "^5.3.11",
"ethers": "5.7.2",
"next": "^13.1.1",
"next-themes": "^0.2.1",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-number-format": "^5.3.1",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"wagmi": "^0.10.4"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.2.0",
"@types/node": "^18.11.18",
"@types/react": "^18.2.31",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
}
}