-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "tezos-etherlink-bridge-ts-sdk-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "patch-package",
"dev": "next dev --experimental-https --experimental-https-key ./certificates/localhost.key --experimental-https-cert ./certificates/localhost.crt",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@baking-bad/tezos-etherlink-bridge-sdk": "^0.4.0",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@taquito/beacon-wallet": "^19.1.0",
"@taquito/taquito": "^19.1.0",
"@web3modal/ethers": "^4.0.5",
"clsx": "^2.1.0",
"ethers": "^6.11.1",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"web3": "^4.4.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-plugin-import": "^2.29.1",
"patch-package": "^8.0.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}