-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "tokenization-lab",
"description": "Deploy, mint, and burn an ERC-20 token",
"author": "Fireblocks (https://www.fireblocks.com)",
"repository": "https://github.com/fireblocks/tokenization-lab.git",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --ext \".js,.ts,.tsx\" --report-unused-disable-directives warn",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@fireblocks/fireblocks-web3-provider": "^1.2.3",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.1.0",
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/wizard": "^0.2.3",
"@tanstack/react-query": "^4.29.12",
"@trpc/client": "^10.28.2",
"@trpc/next": "^10.28.2",
"@trpc/react-query": "^10.28.2",
"@trpc/server": "^10.28.2",
"@vercel/analytics": "^1.0.1",
"clsx": "^1.2.1",
"ethers": "^6.0.8",
"fireblocks-sdk": "^4.2.0",
"next": "^13.4.4",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.2",
"solc": "^0.8.19",
"zod": "^3.21.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.16.16",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"autoprefixer": "^10.4.14",
"eslint": "^8.41.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
}
}